]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/fusionforge/templates/debug.tmpl
private
[SourceForge/phpwiki.git] / themes / fusionforge / templates / debug.tmpl
1 <p class="debug">
2 <?php
3 global $RUNTIMER;
4 echo fmt("Page Execution took %s seconds", $RUNTIMER->getStats());
5 $mem = @getMemoryUsage();
6 if ($mem) {
7     echo fmt(", Memory: %s", $mem);
8 }
9 ?>
10 </p>