SF.net SVN: phpwiki:[10862] trunk/themes

vargenau--- via phpwiki-checkins <[email protected]> Fri, 07 Jan 2022 16:59:37 +0000
Newsgroups gmane.comp.web.wiki.phpwiki.checkins
Message-ID <[email protected]>
Revision: 10862
          http://sourceforge.net/p/phpwiki/code/10862
Author:   vargenau
Date:     2022-01-07 16:59:37 +0000 (Fri, 07 Jan 2022)
Log Message:
-----------
Fix fatal error in template expansion

Modified Paths:
--------------
    trunk/themes/Crao/templates/bottom.tmpl
    trunk/themes/blog/templates/bottom.tmpl
    trunk/themes/fusionforge/templates/bottom.tmpl

Modified: trunk/themes/Crao/templates/bottom.tmpl
===================================================================
--- trunk/themes/Crao/templates/bottom.tmpl	2022-01-07 16:11:32 UTC (rev 10861)
+++ trunk/themes/Crao/templates/bottom.tmpl	2022-01-07 16:59:37 UTC (rev 10862)
@@ -3,7 +3,7 @@
 <?php echo $GLOBALS['ErrorManager']->getPostponedErrorsAsHTML() ?>
 <?php
 if (DEBUG) {
-    echo Template('debug');
+    echo Template('debug')
 }
 ?>
 </footer>

Modified: trunk/themes/blog/templates/bottom.tmpl
===================================================================
--- trunk/themes/blog/templates/bottom.tmpl	2022-01-07 16:11:32 UTC (rev 10861)
+++ trunk/themes/blog/templates/bottom.tmpl	2022-01-07 16:59:37 UTC (rev 10862)
@@ -3,7 +3,7 @@
 <?php echo $GLOBALS['ErrorManager']->getPostponedErrorsAsHTML() ?>
 <?php
 if (DEBUG) {
-    echo Template('debug');
+    echo Template('debug')
 }
 ?>
 <?php } ?>

Modified: trunk/themes/fusionforge/templates/bottom.tmpl
===================================================================
--- trunk/themes/fusionforge/templates/bottom.tmpl	2022-01-07 16:11:32 UTC (rev 10861)
+++ trunk/themes/fusionforge/templates/bottom.tmpl	2022-01-07 16:59:37 UTC (rev 10862)
@@ -2,9 +2,7 @@
 <?php if (DEBUG) { ?>
 <?php echo empty($WARNINGS) ? '' : $WARNINGS ?>
 <?php echo $GLOBALS['ErrorManager']->getPostponedErrorsAsHTML() ?>
-<?php
-    echo Template('debug');
-?>
+<?php echo Template('debug') ?>
 <?php } ?>
 <?php } ?>
 <script type="text/javascript" src="/wiki/themes/default/highlight.js/highlight.pack.js"></script>

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.