X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fgen_sql_patches.php;h=b2b984b4e59cb36d146d06ce7fecc76eee3d6c38;hb=33a76a20bc94ffe95e9f13906eb7dc5cf354948d;hp=184eb28e307f8fb5527266d3e5733edf8b28227c;hpb=6978d0347a3ef94c4ceeca92f588f9ff9dd2fc7f;p=mailer.git diff --git a/inc/gen_sql_patches.php b/inc/gen_sql_patches.php index 184eb28e30..b2b984b4e5 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 ); @@ -86,11 +85,23 @@ if (getFileHash() == '') { // Also update configuration setConfigEntry('secret_key', $secretKey); + // Force update + updateConfiguration('file_hash', $fileHash, '', '0', TRUE); + // Remove variables unset($secretKey); unset($fileHash); } // END - if } // END - if +// @TODO Rewrite this to a filter +if ((isExtensionInstalledAndNewer('cache', '0.1.2')) && (isValidCacheInstance())) { + // Destroy some cache files + foreach (array('config', 'extension', 'filter', 'modules') as $cache) { + // Use rebuildCache() + rebuildCache($cache); + } // END - foreach +} // END - if + // [EOF] ?>