]> git.mxchange.org Git - mailer.git/blobdiff - inc/patch-system.php
More missing config entries added
[mailer.git] / inc / patch-system.php
index 984103c8b0ae3aee42d46a4cc93fd407620a1de8..ace6c372964da7ff986b32b0ff7d95c9602d9142 100644 (file)
  * -------------------------------------------------------------------- *
  * 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                  *
  ************************************************************************/
 
 // 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
-       $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 ($cacheInstance->cache_file("config", true))
-               {
-                       // Replace data
-                       $cacheInstance->cache_replace("patch_level", $_CONFIG['patch_level'], "0", $cacheArray);
-                       $cacheInstance->cache_replace("patch_ctime", $_CONFIG['patch_ctime'], "0", $cacheArray);
-               }
-       }
-}
+       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
 
 //
 ?>