X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fgen_sql_patches.php;h=3d2a48dfe5da78d94ac1e8c234abd54ab7b73739;hb=d4cff9c73632a8d93428a80dcf54b3a8daa80a24;hp=1173c4b3b21b767bce99d00863c521b3b0962726;hpb=d5541e98aa3144d91c7151e5803e8d31e944242e;p=mailer.git diff --git a/inc/gen_sql_patches.php b/inc/gen_sql_patches.php index 1173c4b3b2..3d2a48dfe5 100644 --- a/inc/gen_sql_patches.php +++ b/inc/gen_sql_patches.php @@ -70,7 +70,7 @@ if (getMasterSalt() == '') { if (getFileHash() == '') { // Create filename from hashed random string $fileHash = sha1(generatePassword(mt_rand(128, 256))); - $FQFN = sprintf("%sinc/cache/.%s", + $FQFN = sprintf("%sinc/cache/.%s.cache", getPath(), $fileHash ); @@ -85,6 +85,7 @@ if (getFileHash() == '') { if (isFileReadable($FQFN)) { // Also update configuration setConfigEntry('secret_key', $secretKey); + updateConfiguration('file_hash', $fileHash); // Remove variables unset($secretKey); @@ -92,5 +93,13 @@ if (getFileHash() == '') { } // 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] ?>