]> git.mxchange.org Git - mailer.git/blobdiff - inc/footer.php
mailer project continued:
[mailer.git] / inc / footer.php
index e9c5abe777e874275ea718de2b50cc0fd50b0601..58a447e4f57fa00fcc6ebefa6a38383c9415d46c 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
+ * 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 *
@@ -41,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                443    3                 443    3                  44321
-if ((((!isset($GLOBALS['footer_sent'])) || (($GLOBALS['footer_sent'] != 1) && ($GLOBALS['footer_sent'] != 2))) && (!isCssOutputMode()) && (!isAjaxOutputMode()) && (!isImageOutputMode()))) {
+// 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]
 ?>