X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fgen_sql_patches.php;h=1a7c1fc7951b04528f5df70cf7af11e416328fb1;hb=ea295a391646261bc643264570404f6862abcbd4;hp=0c9afaab5c6131cac397fb96c565a5354e42e06c;hpb=397eb5dee2611cfaa1ff494d73e6785b88109cd6;p=mailer.git 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