X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fgen_sql_patches.php;h=7491cd16ae41d36392a5ac6f40f7dc969aa47751;hp=61eebc187f0593ba9de770714806487ea559c345;hb=e8ca54fe91872ab95a6ffdc4f1268bf18889021d;hpb=dea8e9bedeb3657454acd3f8ebb48c75dbe1bc2d diff --git a/inc/gen_sql_patches.php b/inc/gen_sql_patches.php index 61eebc187f..7491cd16ae 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 - $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_config SET file_hash='%s' WHERE config=0 LIMIT 1", - array($file_hash), __FILE__, __LINE__); + // 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] ?>