X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fgen_sql_patches.php;h=b2b984b4e59cb36d146d06ce7fecc76eee3d6c38;hp=efa794120113073c89f18c3ce3ff78c718046348;hb=7770a9545292d628afd2be4f58f86da5c9139619;hpb=5bdeaf8b452206598b6c6cd4f941145b11a0eccc diff --git a/inc/gen_sql_patches.php b/inc/gen_sql_patches.php index efa7941201..b2b984b4e5 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 - SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_config` SET file_hash='%s' WHERE config=0 LIMIT 1", - array($file_hash), __FILE__, __LINE__); - - // Generate FQFN for .htaccess file - $FQFN = PATH."inc/.secret/.htaccess"; + if (isFileReadable($FQFN)) { + // Also update configuration + setConfigEntry('secret_key', $secretKey); - // Is the .htaccess file there? - if (!FILE_READABLE($FQFN)) { - // Also create .htaccess file - WRITE_FILE($FQFN, "Deny from all\n"); - } // END - if + // Force update + updateConfiguration('file_hash', $fileHash, '', '0', TRUE); - // Also update configuration - $_CONFIG['secret_key'] = $secretKey; unset($secretKey); - $_CONFIG['file_hash'] = $file_hash; unset($file_hash); + // Remove variables + unset($secretKey); + unset($fileHash); } // END - if } // END - if -// -?> \ No newline at end of file +// @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] +?>