]> git.mxchange.org Git - mailer.git/blobdiff - inc/footer.php
Old config.php is now automatically updated to new config-local.php format, several...
[mailer.git] / inc / footer.php
index d822c4eb7fbf31158211b3171f428b0932cbed79..49b2f4e8312720494d0b7367e8a710a88a8f8cad 100644 (file)
@@ -49,18 +49,18 @@ if ((((!isset($GLOBALS['footer_sent'])) || (($GLOBALS['footer_sent'] != '1') &&
        // Output the generated HTML code or do nothing in direct-mode
        if (getTotalFatalErrors() > 0) {
                // Output fatal error messages
-               loadIncludeOnce("inc/fatal_errors.php");
+               loadIncludeOnce('inc/fatal_errors.php');
        } // END - if
 
        // Shall we display the copyright notice?
-       if ((!REQUEST_ISSET_GET(('frame'))) && (basename($_SERVER['PHP_SELF']) != "mailid_top.php") && (getConfig('WRITE_FOOTER') == 'Y') && ($GLOBALS['header_sent'] == '2')) {
+       if ((!REQUEST_ISSET_GET(('frame'))) && (basename($_SERVER['PHP_SELF']) != 'mailid_top.php') && (getConfig('WRITE_FOOTER') == 'Y') && ($GLOBALS['header_sent'] == '2')) {
                // Backlink enabled?
                if ((getConfig('ENABLE_BACKLINK') == 'Y') || (isInstalling())) {
                        // Copyright with backlink, thanks! :-)
-                       LOAD_TEMPLATE("copyright_backlink");
+                       LOAD_TEMPLATE('copyright_backlink');
                } else {
                        // No backlink in Copyright note
-                       LOAD_TEMPLATE("copyright");
+                       LOAD_TEMPLATE('copyright');
                }
        } // END - if
 
@@ -71,17 +71,17 @@ if ((((!isset($GLOBALS['footer_sent'])) || (($GLOBALS['footer_sent'] != '1') &&
        } // END - if
 
        // Load page footer
-       LOAD_TEMPLATE("page_footer");
+       LOAD_TEMPLATE('page_footer');
 
        // And the last closing HTML tag
-       OUTPUT_HTML("</html>");
+       OUTPUT_HTML('</html>');
 } // END - if
 
 // Footer has been reached
 $GLOBALS['footer_sent'] = 1;
 
 // Output HTML code
-OUTPUT_HTML("");
+OUTPUT_HTML('');
 
 // Shutdown
 shutdown();