X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fgen_sql_patches.php;h=783124e1b48d57dfc63436aa25dd80090460837a;hb=45799353e6886efecaa6fe169848321a81a08c6e;hp=a12ead7b731adc15a87cdaaddf8577eee7b0209b;hpb=cca98f57dff720b174d21d071cee8303462485d7;p=mailer.git diff --git a/inc/gen_sql_patches.php b/inc/gen_sql_patches.php index a12ead7b73..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 $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__); + if (isFileReadable($FQFN)) { + // Also update configuration + setConfigEntry('secret_key', $secretKey); + updateConfiguration('file_hash', $fileHash); - // Generate FQFN for .htaccess file - $FQFN = PATH."inc/.secret/.htaccess"; + // Remove variables + unset($secretKey); + unset($fileHash); + } // END - if +} // END - if - // Is the .htaccess file there? - if (!FILE_READABLE($FQFN)) { - // Also create .htaccess file - WRITE_FILE($FQFN, "Deny from all\n"); +// @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 - - // Also update configuration - $_CONFIG['secret_key'] = $secretKey; unset($secretKey); - $_CONFIG['file_hash'] = $file_hash; unset($file_hash); - } // END - if + } // END - foreach } // END - if -// -?> \ No newline at end of file +// [EOF] +?>