We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e77419 commit 1d28440Copy full SHA for 1d28440
public_html/lists/admin/upgrade.php
@@ -369,13 +369,16 @@ function output($message)
369
if (version_compare($dbversion, '3.3.3','<')) {
370
// add a draft campaign for invite plugin
371
addInviteCampaign();
372
-
373
}
374
375
if (version_compare($dbversion, '3.3.4','<')) {
376
Sql_Query("alter table {$GLOBALS['tables']['bounce']} modify data mediumblob ");
377
378
+ if (version_compare($dbversion, '3.4.0-RC1','<')) {
379
+ SaveConfig('secret', bin2hex(random_bytes(20)));
380
+ }
381
+
382
//# longblobs are better at mixing character encoding. We don't know the encoding of anything we may want to store in cache
383
//# before converting, it's quickest to clear the cache
384
clearPageCache();
0 commit comments