Revision: 10791
http://sourceforge.net/p/phpwiki/code/10791
Author: vargenau
Date: 2021-12-16 15:45:20 +0000 (Thu, 16 Dec 2021)
Log Message:
-----------
themes/shamino_com/templates/debug.tmpl: reformat
Modified Paths:
--------------
trunk/themes/shamino_com/templates/debug.tmpl
Modified: trunk/themes/shamino_com/templates/debug.tmpl
===================================================================
--- trunk/themes/shamino_com/templates/debug.tmpl 2021-12-16 15:43:13 UTC (rev 10790)
+++ trunk/themes/shamino_com/templates/debug.tmpl 2021-12-16 15:45:20 UTC (rev 10791)
@@ -1,10 +1,17 @@
-<?php // shamino.com debug ?>
<div class="debug">
-<?php global $RUNTIMER; ?>
+<?php
+global $RUNTIMER;
+?>
<span id="html-validator"><a class="wikilink" href="http://validator.w3.org/check/referer">Valid HTML 5!</a> <a class="wikilink" href="http://jigsaw.w3.org/css-validator/check/referer">Valid CSS 3!</a>
</span>
- <span><?php echo fmt("Page Execution took %s seconds", $RUNTIMER->getStats()) ?>
-<?php $mem = @memory_get_usage(); if ($mem) { ?>
- <?php echo fmt(", Memory: %s", $mem) ?>
-<?php } ?></span></div>
+<span>
+<?php
+echo fmt("Page Execution took %s seconds", $RUNTIMER->getStats());
+$mem = @memory_get_usage();
+if ($mem) {
+ echo fmt(", Memory: %s", $mem);
+}
+?>
+</span>
+</div>
<br class="clear-floats" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|