X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fgen_sql_patches.php;h=1a7c1fc7951b04528f5df70cf7af11e416328fb1;hp=0c9afaab5c6131cac397fb96c565a5354e42e06c;hb=8f60465485bd5e9ab2c0ddfa1f054458cf510042;hpb=c1f17f1495b1666f02e70ad6752bdb9673fa5e1f diff --git a/inc/gen_sql_patches.php b/inc/gen_sql_patches.php index 0c9afaab5c..1a7c1fc795 100644 --- a/inc/gen_sql_patches.php +++ b/inc/gen_sql_patches.php @@ -50,7 +50,7 @@ if (getConfig('pass_scramble') == "") { array($scrambleString), __FILE__, __LINE__); // Also remember it in config - $_CONFIG['pass_scramble'] = $scrambleString; + setConfigEntry('pass_scramble', $scrambleString); unset($scrambleString); } // END - if @@ -65,7 +65,7 @@ if (getConfig('master_salt') == "") { array($masterSalt), __FILE__, __LINE__); // Also remember it in config - $_CONFIG['master_salt'] = $masterSalt; + setConfigEntry('master_salt', $masterSalt); unset($masterSalt); } // END - if @@ -109,8 +109,12 @@ if (getConfig('file_hash') == "") { } // END - if // Also update configuration - $_CONFIG['secret_key'] = $secretKey; unset($secretKey); - $_CONFIG['file_hash'] = $file_hash; unset($file_hash); + setConfigEntry('secret_key', $secretKey); + setConfigEntry('file_hash' , $file_hash); + + // Remove variables + unset($secretKey); + unset($file_hash); } // END - if } // END - if