X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fpatch-system.php;h=e9be4551919aa110a7bdb968599dfeb78c941ebb;hp=984103c8b0ae3aee42d46a4cc93fd407620a1de8;hb=f36ab6ae1503ee54a7c9d0083a8089286d8b37ef;hpb=52e8a0635bd0b7c653845685c55e4e5f251375fe diff --git a/inc/patch-system.php b/inc/patch-system.php index 984103c8b0..e9be455191 100644 --- a/inc/patch-system.php +++ b/inc/patch-system.php @@ -32,32 +32,18 @@ ************************************************************************/ // Some security stuff... -if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) -{ +if (!defined('__SECURITY')) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; require($INC); } // Check for patch level differences between databases and current hard-coded -if (CURR_PATCH_LEVEL > $_CONFIG['patch_level']) -{ +if ((CURR_SVN_REVISION > getConfig('patch_level')) || (getConfig('patch_level') == "CURR_SVN_REVISION") || (getConfig('patch_ctime') == "UNIX_TIMES")) { // Update database and CONFIG array - $result = SQL_QUERY("UPDATE "._MYSQL_PREFIX."_config SET patch_level='".CURR_PATCH_LEVEL."', patch_ctime=UNIX_TIMESTAMP() WHERE config=0 LIMIT 1", - __FILE__, __LINE__); - $_CONFIG['patch_level'] = CURR_PATCH_LEVEL; + UPDATE_CONFIG(array("patch_level", "patch_ctime"), array(CURR_SVN_REVISION, "UNIX_TIMESTAMP()")); + $_CONFIG['patch_level'] = CURR_SVN_REVISION; $_CONFIG['patch_ctime'] = time(); - - // Destroy cache - if (GET_EXT_VERSION("cache") >= "0.1.2") - { - if ($cacheInstance->cache_file("config", true)) - { - // Replace data - $cacheInstance->cache_replace("patch_level", $_CONFIG['patch_level'], "0", $cacheArray); - $cacheInstance->cache_replace("patch_ctime", $_CONFIG['patch_ctime'], "0", $cacheArray); - } - } -} +} // END - if // ?>