X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fpatch-system.php;h=e9be4551919aa110a7bdb968599dfeb78c941ebb;hb=5b498995f1792ba5972d782b63cd5cb044727c21;hp=19659950bfa2e662378900bc91f45d3ce90793da;hpb=7d96ffc18679f7aeb05ce3ab091f200c4a18f144;p=mailer.git diff --git a/inc/patch-system.php b/inc/patch-system.php index 19659950bf..e9be455191 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 > getConfig('patch_level')) || (getConfig('patch_level') == "CURR_SVN_REVISION") || (getConfig('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