More HTML improvements
[mailer.git] / inc / filters.php
index c28d8fb3b01214bb93070408ad9ff854ed0c3ec8..4159a10796d6ae23825e59f2f4df2958d6f0b0a4 100644 (file)
@@ -928,10 +928,10 @@ function FILTER_DISPLAY_COPYRIGHT () {
                // Backlink enabled?
                if (((isConfigEntrySet('ENABLE_BACKLINK')) && (getConfig('ENABLE_BACKLINK') == 'Y')) || (isInstalling())) {
                        // Copyright with backlink, thanks! :-)
-                       loadTemplate('copyright_backlink');
+                       $GLOBALS['page_footer'] .= loadTemplate('copyright_backlink', true);
                } else {
                        // No backlink in Copyright note
-                       loadTemplate('copyright');
+                       $GLOBALS['page_footer'] .= loadTemplate('copyright', true);
                }
        } // END - if
 }