X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fgen_sql_patches.php;h=783124e1b48d57dfc63436aa25dd80090460837a;hp=ffbd0713a7f93ff5e6608f2d05ee4fbb0e70fb37;hb=e937b6540b932d537f72e827de76dd5be4aefe48;hpb=a090e351c49fe021fb3064325694da03402332e0 diff --git a/inc/gen_sql_patches.php b/inc/gen_sql_patches.php index ffbd0713a7..783124e1b4 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 $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 (!FILE_READABLE($FQFN)) { - // Also create .htaccess file - WRITE_FILE($FQFN, "Deny from all\n"); - } // END - if - + if (isFileReadable($FQFN)) { // Also update configuration setConfigEntry('secret_key', $secretKey); - setConfigEntry('file_hash' , $fileHash); + updateConfiguration('file_hash', $fileHash); // Remove variables unset($secretKey); @@ -123,5 +92,17 @@ 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 + foreach (array('config', 'extension', 'filter', 'modules') as $cache) { + // Is the cache file there? + if ($GLOBALS['cache_instance']->loadCacheFile($cache)) { + // Then remove it + $GLOBALS['cache_instance']->removeCacheFile(); + } // END - if + } // END - foreach +} // END - if + +// [EOF] +?>