X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fpatch-system.php;h=19659950bfa2e662378900bc91f45d3ce90793da;hp=04b0099342b7fc27f8f4f26d1bf186c76e34c8a4;hb=7d96ffc18679f7aeb05ce3ab091f200c4a18f144;hpb=75ad748a68473ace540251427a74fb781b1145e9 diff --git a/inc/patch-system.php b/inc/patch-system.php index 04b0099342..19659950bf 100644 --- a/inc/patch-system.php +++ b/inc/patch-system.php @@ -39,25 +39,12 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) } // Check for patch level differences between databases and current hard-coded -if (CURR_PATCH_LEVEL > $CONFIG['patch_level']) -{ +if (CURR_SVN_REVISION > $_CONFIG['patch_level']) { // 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; - $CONFIG['patch_ctime'] = time(); - - // Destroy cache - if (GET_EXT_VERSION("cache") >= "0.1.2") - { - if ($CACHE->cache_file("config", true)) - { - // Replace data - $CACHE->cache_replace("patch_level", $CONFIG['patch_level'], "0", $CFG_CACHE); - $CACHE->cache_replace("patch_ctime", $CONFIG['patch_ctime'], "0", $CFG_CACHE); - } - } -} + UPDATE_CONFIG(array("patch_level", "path_ctime"), array(CURR_SVN_REVISION, "UNIX_TIMESTAMP()")); + $_CONFIG['patch_level'] = CURR_SVN_REVISION; + $_CONFIG['patch_ctime'] = time(); +} // END - if // ?>