X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fgen_sql_patches.php;h=4d8431671f0ae69ddcb72f8b750f63cb4d0e2dd2;hb=34297125f617f854d2cc009d3cc4f16b6581a1f5;hp=184eb28e307f8fb5527266d3e5733edf8b28227c;hpb=6978d0347a3ef94c4ceeca92f588f9ff9dd2fc7f;p=mailer.git diff --git a/inc/gen_sql_patches.php b/inc/gen_sql_patches.php index 184eb28e30..4d8431671f 100644 --- a/inc/gen_sql_patches.php +++ b/inc/gen_sql_patches.php @@ -14,8 +14,6 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009, 2010 by Mailer Developer Team * @@ -70,8 +68,9 @@ if (getMasterSalt() == '') { if (getFileHash() == '') { // Create filename from hashed random string $fileHash = sha1(generatePassword(mt_rand(128, 256))); - $FQFN = sprintf("%sinc/cache/.%s.cache", + $FQFN = sprintf("%s%s.%s.cache", getPath(), + getCachePath(), $fileHash ); @@ -85,6 +84,7 @@ if (getFileHash() == '') { if (isFileReadable($FQFN)) { // Also update configuration setConfigEntry('secret_key', $secretKey); + updateConfiguration('file_hash', $fileHash); // Remove variables unset($secretKey); @@ -92,5 +92,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] ?>