X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Ffooter.php;h=37a86adf4b3523f64e2f0ebd4c07dcea9b3b00b9;hp=a9bf76f5fe27c321e43e32f1087a4b6effc94df1;hb=da5c63bacddced77a951cbe7b223f314885a6c87;hpb=29b786a66a86385b5c3060c68834f30b89407a6b diff --git a/inc/footer.php b/inc/footer.php index a9bf76f5fe..37a86adf4b 100644 --- a/inc/footer.php +++ b/inc/footer.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 - 2013 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 * @@ -43,23 +41,23 @@ if (!defined('__SECURITY')) { } // END - if // Init page footer -$GLOBALS['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))) { +// Footer disabled (e.g. CSS/AJAX/image output) or already sent? +// 1234 5 54 45 5 5 543 3 443 3 443 3 44321 +if ((((!isset($GLOBALS['__footer_sent'])) || (($GLOBALS['__footer_sent'] != 1) && ($GLOBALS['__footer_sent'] != 2))) && (!isCssOutputMode()) && (!isAjaxOutputMode()) && (!isImageOutputMode()))) { // Run the filter, sweet huh? runFilterChain('page_footer'); // Load page footer - $GLOBALS['page_footer'] .= loadTemplate('page_footer', true); + $GLOBALS['__page_footer'] .= loadTemplate('page_footer', TRUE); } // END - if // Footer has been reached -$GLOBALS['footer_sent'] = 1; +$GLOBALS['__footer_sent'] = 1; // Shutdown -shutdown(); +doShutdown(); // [EOF] ?>