X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fversions.php;h=eec7db5ef53b1872b828e280ea350613fac18d52;hb=1cca537e53ba30023d0c471e9c561e72d37827c6;hp=dc28ad308afec28de7fd277fd87c4f79138a7f2f;hpb=f26aab4a55972825a0d3ef9346c8c8dea8752b7b;p=mailer.git diff --git a/inc/versions.php b/inc/versions.php index dc28ad308a..eec7db5ef5 100644 --- a/inc/versions.php +++ b/inc/versions.php @@ -10,14 +10,14 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Versionsdefinierungen * * -------------------------------------------------------------------- * - * $Revision:: 880 $ * - * $Date:: 2009-03-07 03:55:57 +0100 (Sat, 07 Mar 2009) $ * + * $Revision:: $ * + * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * - * $Author:: quix0r $ * + * $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 * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -38,16 +38,15 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; - require($INC); + die(); } // END - if // If you understand regular expressions ^^^ you may know how I versionize... ;-) -define('FULL_VERSION', getActualVersion('Tag')); +setConfigEntry('FULL_VERSION', getActualVersion('Tag')); // Current SVN revision and date -define('CURR_SVN_REVISION', getActualVersion('Revision')); -define('CURR_SVN_DATE' , getActualVersion('Date')); +setConfigEntry('CURR_SVN_REVISION', getActualVersion('Revision')); +setConfigEntry('CURR_SVN_DATE' , getActualVersion('Date')); -// +// [EOF] ?>