X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Fsponsor%2F.php;h=3b466a8d08a32fe2f3fa169bbdd1a4a8716653de;hb=64c8349613addc3da2242c5cd6b99d64e3fb5f8e;hp=026ba6e9e0906173bfe832b1e2cdf9e0c1265efe;hpb=ea2a5e6a7838127d2f9dec02ba68ec575188528b;p=mailer.git diff --git a/inc/modules/sponsor/.php b/inc/modules/sponsor/.php index 026ba6e9e0..3b466a8d08 100644 --- a/inc/modules/sponsor/.php +++ b/inc/modules/sponsor/.php @@ -10,14 +10,20 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : * * -------------------------------------------------------------------- * - * * + * $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 * + * 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 * + * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License. * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * @@ -31,18 +37,19 @@ ************************************************************************/ // Some security stuff... -if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php"; - require($INC); -} elseif ((!EXT_IS_ACTIVE("sponsor")) && (!IS_ADMIN())) { - $FATAL[] = EXTENSION_PROBLEM_EXT_INACTIVE; +if (!defined('__SECURITY')) { + die(); +} elseif ((!isExtensionActive('sponsor'))) { + addFatalMessage(__FILE__, __LINE__, generateExtensionInactiveNotInstalledMessage('sponsor')); return; -} elseif (!IS_SPONSOR()) { +} elseif (!isSponsor()) { // No sponsor! - $FATAL[] = SPONSOR_ONLY_AREA_ENTERED; + addFatalMessage(__FILE__, __LINE__, getMessage('SPONSOR_ONLY_AREA_ENTERED')); return; } // Put all HTML code into $OUT! -// E.g.: $OUT = LOAD_TEMPLATE("sponsor_template", true); +// E.g.: $OUT = loadTemplate('sponsor_template', true); + +// [EOF] ?>