X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fpatch-system.php;h=ace6c372964da7ff986b32b0ff7d95c9602d9142;hb=ccc4a69ce9b17aa8d7b1554a3b2b017db091821b;hp=1af7e01147a93004cb417886cf46c477ac79578b;hpb=fb7120ffa230b62b54895bcf95952e1cf30f8594;p=mailer.git diff --git a/inc/patch-system.php b/inc/patch-system.php index 1af7e01147..ace6c37296 100644 --- a/inc/patch-system.php +++ b/inc/patch-system.php @@ -38,14 +38,14 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $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 ((constant('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", "patch_ctime"), array(constant('CURR_SVN_REVISION'), "UNIX_TIMESTAMP()")); + updateConfiguration(array("patch_level", "patch_ctime"), array(constant('CURR_SVN_REVISION'), "UNIX_TIMESTAMP()")); setConfigEntry('patch_level', constant('CURR_SVN_REVISION')); setConfigEntry('patch_ctime', time()); } // END - if