X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fsponsor.php;h=17e5a57475f6953d1beefe768d542cc126b3c9b5;hp=647357624702117329b40f447f075cdc474547ff;hb=8da353fa4bb729bb3299d247803c23833a52a327;hpb=fc162164725588cf75969f707faead9c9cd8e68b diff --git a/inc/modules/sponsor.php b/inc/modules/sponsor.php index 6473576247..17e5a57475 100644 --- a/inc/modules/sponsor.php +++ b/inc/modules/sponsor.php @@ -14,12 +14,10 @@ * $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 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * 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 * @@ -38,17 +36,17 @@ // Some security stuff... if (!defined('__SECURITY')) { - die(); + exit(); } elseif ((!isExtensionActive('sponsor'))) { - loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('sponsor')); + displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=sponsor%}'); return; } elseif (!isSponsor()) { // No sponsor! addFatalMessage(__FILE__, __LINE__, '{--SPONSOR_ONLY_AREA_ENTERED--}'); return; -} elseif (!isWhatSet()) { +} elseif ((!isWhatSet()) || (getWhat() == '')) { // Empty what value detected! - setWhat('welcome'); + reportBug(__FUNCTION__, __LINE__, 'what is empty.'); } // A valid sponsor login and we are allowed to enter this module so let's @@ -61,17 +59,11 @@ $content['menu'] = addSponsorMenu(getWhat()); // Generate right-side output $content['content'] = addSponsorContent(getWhat()); -// Load header template -$content['header'] = loadTemplate('sponsor_header', true); - -// Load footer template -$content['footer'] = loadTemplate('sponsor_footer', true); - // 'You are here' navigation -$content['you_are_here'] = addMenuDescription('sponsor', getWhat(), true); +$content['you_are_here'] = addYouAreHereLink('sponsor', getWhat(), TRUE); // Load main sponsor template -loadTemplate('sponsor_main', false, $content); +loadTemplate('sponsor_main', FALSE, $content); // [EOF] ?>