X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fgen_sql_patches.php;h=3e780dcac39499dbd74334881b43631fbf8bf5d6;hp=3d2a48dfe5da78d94ac1e8c234abd54ab7b73739;hb=e5dffd4249c97200cbad02f3f4eaf5c373fdb89a;hpb=5c8a9ba30d1aaa13a6f18c51548a4d3f2c25326e diff --git a/inc/gen_sql_patches.php b/inc/gen_sql_patches.php index 3d2a48dfe5..3e780dcac3 100644 --- a/inc/gen_sql_patches.php +++ b/inc/gen_sql_patches.php @@ -14,12 +14,10 @@ * $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 * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -67,11 +65,12 @@ if (getMasterSalt() == '') { unset($masterSalt); } // END - if -if (getFileHash() == '') { +if ((getFileHash() == '') || (!isFileReadable(getPath() . getCachePath() . '.' . getFileHash() . '.cache'))) { // 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,7 +84,9 @@ if (getFileHash() == '') { if (isFileReadable($FQFN)) { // Also update configuration setConfigEntry('secret_key', $secretKey); - updateConfiguration('file_hash', $fileHash); + + // Force update + updateConfiguration('file_hash', $fileHash, '', '0', TRUE); // Remove variables unset($secretKey); @@ -96,9 +97,10 @@ if (getFileHash() == '') { // @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(); + foreach (array('config', 'extension', 'filter', 'modules') as $cache) { + // Use rebuildCache() + rebuildCache($cache); + } // END - foreach } // END - if // [EOF]