X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fsponsor%2F.php;h=8b34a5729b04e36fe23d1e43441fd338f2807f52;hb=12d1414024e87153a133bb1d0fe0185ca2c700c5;hp=c3e2df9f925c533f581213c04ad0218db4f91bef;hpb=77cdaff2afb97ed32985ced906a3a95ee078c2ef;p=mailer.git diff --git a/inc/modules/sponsor/.php b/inc/modules/sponsor/.php index c3e2df9f92..8b34a5729b 100644 --- a/inc/modules/sponsor/.php +++ b/inc/modules/sponsor/.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * 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 * * For more information visit: http://www.mxchange.org * @@ -32,14 +37,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); -} elseif ((!EXT_IS_ACTIVE("sponsor")) - addFatalMessage(getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), "sponsor"); +} elseif ((!EXT_IS_ACTIVE('sponsor'))) { + addFatalMessage(__FILE__, __LINE__, generateExtensionInactiveNotInstalledMessage('sponsor')); return; } elseif (!IS_SPONSOR()) { // No sponsor! - addFatalMessage(getMessage('SPONSOR_ONLY_AREA_ENTERED')); + addFatalMessage(__FILE__, __LINE__, getMessage('SPONSOR_ONLY_AREA_ENTERED')); return; }