X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fgen_sql_patches.php;h=3d2a48dfe5da78d94ac1e8c234abd54ab7b73739;hp=58283c56cb2362f9554a6b43c3dc7c5cea50d2d1;hb=ad85ea5a3690e65e3509d4e4e8c63083b2b71b0c;hpb=7b0f17cd637e388049d2167811e4332cec1e979b diff --git a/inc/gen_sql_patches.php b/inc/gen_sql_patches.php index 58283c56cb..3d2a48dfe5 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); + updateConfiguration('file_hash', $fileHash); // Remove variables unset($secretKey); @@ -123,5 +93,13 @@ 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')) && (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] +?>