]> git.mxchange.org Git - mailer.git/blobdiff - inc/footer.php
Opps (sorry guys)
[mailer.git] / inc / footer.php
index 9907b0608f15455f6c038a7e75775fd6e81dd978..58a447e4f57fa00fcc6ebefa6a38383c9415d46c 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 08/25/2003 *
- * ===============                              Last change: 10/23/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 08/25/2003 *
+ * ===================                          Last change: 10/23/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : footer.php                                       *
  * $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                           *
- * 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 *
@@ -41,21 +40,24 @@ if (!defined('__SECURITY')) {
        die();
 } // END - if
 
-// 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))) {
+// Init page footer
+$GLOBALS['__page_footer'] = '';
+
+// 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
-       loadTemplate('page_footer');
+       $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]
 ?>