X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fpatch-system.php;h=37de0712551f64179a8bd09864f89ab35121fb0c;hb=c3d9541a62fa3cecbb26cbefda592ed02a340e24;hp=19659950bfa2e662378900bc91f45d3ce90793da;hpb=9e23f0cdf28b296a468094d1e7efdf0099669745;p=mailer.git diff --git a/inc/patch-system.php b/inc/patch-system.php index 19659950bf..37de071255 100644 --- a/inc/patch-system.php +++ b/inc/patch-system.php @@ -32,16 +32,15 @@ ************************************************************************/ // 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_SVN_REVISION > $_CONFIG['patch_level']) { +if ((CURR_SVN_REVISION > $_CONFIG['patch_level']) || ($_CONFIG['patch_level'] == "CURR_SVN_REVISION") || ($_CONFIG['patch_ctime'] == "UNIX_TIMES")) { // Update database and CONFIG array - UPDATE_CONFIG(array("patch_level", "path_ctime"), array(CURR_SVN_REVISION, "UNIX_TIMESTAMP()")); + UPDATE_CONFIG(array("patch_level", "patch_ctime"), array(CURR_SVN_REVISION, "UNIX_TIMESTAMP()")); $_CONFIG['patch_level'] = CURR_SVN_REVISION; $_CONFIG['patch_ctime'] = time(); } // END - if