X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fgen_sql_patches.php;h=783124e1b48d57dfc63436aa25dd80090460837a;hb=6401e072bebcbf06f028ebd090979e83826d494a;hp=467e4b4ecb735cc4cfe693174516a5cd2fb8b8bf;hpb=7f104f6fe558bb56b4205241435a2357c2feece1;p=mailer.git diff --git a/inc/gen_sql_patches.php b/inc/gen_sql_patches.php index 467e4b4ecb..783124e1b4 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 + foreach (array('config', 'extension', 'filter', 'modules') as $cache) { + // Is the cache file there? + if ($GLOBALS['cache_instance']->loadCacheFile($cache)) { + // Then remove it + $GLOBALS['cache_instance']->removeCacheFile(); + } // END - if + } // END - foreach +} // END - if + +// [EOF] ?>