X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fgen_sql_patches.php;h=b2b984b4e59cb36d146d06ce7fecc76eee3d6c38;hb=33a76a20bc94ffe95e9f13906eb7dc5cf354948d;hp=8a8797dcafb1af8c5486e7d111a6eee747ce75b5;hpb=d1637dad0b2ca0e5fb411ee0843f01bfb4cc94e0;p=mailer.git diff --git a/inc/gen_sql_patches.php b/inc/gen_sql_patches.php index 8a8797dcaf..b2b984b4e5 100644 --- a/inc/gen_sql_patches.php +++ b/inc/gen_sql_patches.php @@ -1,7 +1,7 @@ Cookie: ".getSession('u_hash')."
Test: ".$test); - - // Write $fileHash to database - SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_config` SET file_hash='%s' WHERE config=0 LIMIT 1", - array($fileHash), __FILE__, __LINE__); - - // Generate FQFN for .htaccess file - $FQFN = sprintf("%sinc/.secret/.htaccess", - constant('PATH') - ); - - // Is the .htaccess file there? - if (!isFileReadable($FQFN)) { - // Also create .htaccess file - writeToFile($FQFN, "Deny from all\n"); - } // END - if - // Also update configuration setConfigEntry('secret_key', $secretKey); - setConfigEntry('file_hash' , $fileHash); + + // Force update + updateConfiguration('file_hash', $fileHash, '', '0', TRUE); // Remove variables unset($secretKey); @@ -123,5 +94,14 @@ if (getConfig('file_hash') == '') { } // 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] +?>