X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Ffooter.php;h=98bcec107f2831c914eb12ae83d34a2ca7c0b42f;hb=e68f2f7b0a55fa31eb7ce5baf844dca40f11abea;hp=72f500281c32ca384f1d1ecb01f50ab859eee467;hpb=263a089d8a499e0e26d0af9e7aa7639f88b8ca60;p=mailer.git diff --git a/inc/footer.php b/inc/footer.php index 72f500281c..98bcec107f 100644 --- a/inc/footer.php +++ b/inc/footer.php @@ -14,10 +14,9 @@ * $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 - 2011 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -41,14 +40,17 @@ if (!defined('__SECURITY')) { die(); } // END - if +// Init page footer +$GLOBALS['page_footer'] = ''; + // Footer disabled or already sent? -// 1234 5 54 45 5 5 543 3 321 -if ((((!isset($GLOBALS['footer_sent'])) || (($GLOBALS['footer_sent'] != 1) && ($GLOBALS['footer_sent'] != 2))) && (getOutputMode() != 1))) { +// 1234 5 54 45 5 5 543 3 44321 +if ((((!isset($GLOBALS['footer_sent'])) || (($GLOBALS['footer_sent'] != 1) && ($GLOBALS['footer_sent'] != 2))) && (!isCssOutputMode()))) { // Run the filter, sweet huh? runFilterChain('page_footer'); // Load page footer - loadTemplate('page_footer'); + $GLOBALS['page_footer'] .= loadTemplate('page_footer', true); } // END - if // Footer has been reached