X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fgen_sql_patches.php;h=12e3a617edcc50fc54b166f985658eed557506e0;hb=262c3e87d0a80ec8a4435b2564d4b666fd329bf6;hp=d8cf59fece8633bfa79fbcbb2a6b4c5cab924ef5;hpb=66b91ce490ab549425619c95fc12086e126d541b;p=mailer.git diff --git a/inc/gen_sql_patches.php b/inc/gen_sql_patches.php index d8cf59fece..12e3a617ed 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 - updateConfiguration('file_hash', $fileHash); - - // Generate FQFN for .htaccess file - $FQFN = sprintf("%sinc/.secret/.htaccess", - getConfig('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); + updateConfiguration('file_hash', $fileHash); // Remove variables unset($secretKey); @@ -117,5 +92,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] +?>