X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fpatch-system.php;h=ace6c372964da7ff986b32b0ff7d95c9602d9142;hp=e3ec443cd32d789bfeb4e66c2f811aa0113d7ce1;hb=24d88ff55d8797b8624ed0efb6cdfb3cd1e2fa68;hpb=c45b1827a16928c65ecc1aea6a9d7a504c4874d4 diff --git a/inc/patch-system.php b/inc/patch-system.php index e3ec443cd3..ace6c37296 100644 --- a/inc/patch-system.php +++ b/inc/patch-system.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Verwalyet die Patch-Level * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -32,18 +37,17 @@ ************************************************************************/ // Some security stuff... -if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) -{ - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; +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 ((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", "path_ctime"), array(CURR_PATH_LEVEL, "UNIX_TIMESTAMP()")); - $_CONFIG['patch_level'] = CURR_PATCH_LEVEL; - $_CONFIG['patch_ctime'] = time(); + 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 //