X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fgen_sql_patches.php;h=24bd20b76f0851532d4f571faa5e6a2883d9f707;hb=e17685c65d1a48c061b7c4f64c7a23c165430460;hp=8c54d294aa7a71699516dd038989f031b20b2d27;hpb=7ca7fc19533794f4cec43d8e9767d1c137148a8a;p=mailer.git diff --git a/inc/gen_sql_patches.php b/inc/gen_sql_patches.php index 8c54d294aa..24bd20b76f 100644 --- a/inc/gen_sql_patches.php +++ b/inc/gen_sql_patches.php @@ -1,7 +1,7 @@ Cookie: ".get_session('u_hash')."
Test: ".$test); - - // Write $file_hash to database - UPDATE_CONFIG("file_hash", $file_hash); + // File hash was never created + writeToFile($FQFN, $secretKey); + // Is the file there? + if (isFileReadable($FQFN)) { // Also update configuration - $_CONFIG['secret_key'] = $secretKey; - $_CONFIG['file_hash'] = $file_hash; + setConfigEntry('secret_key', $secretKey); + updateConfiguration('file_hash', $fileHash); - // And remove some variables + // Remove variables unset($secretKey); - unset($file_hash); - } -} - -// + unset($fileHash); + } // END - if +} // END - if + +// @TODO Rewrite this to a filter +if ((isExtensionInstalledAndNewer('cache', '0.1.2')) && (isCacheInstanceValid())) { + // Destroy some cache files + if ($GLOBALS['cache_instance']->loadCacheFile('config')) $GLOBALS['cache_instance']->removeCacheFile(); + if ($GLOBALS['cache_instance']->loadCacheFile('extension')) $GLOBALS['cache_instance']->removeCacheFile(); + if ($GLOBALS['cache_instance']->loadCacheFile('modules')) $GLOBALS['cache_instance']->removeCacheFile(); +} // END - if + +// [EOF] ?>