From: <var...@us...> - 2025-02-28 14:09:43
|
Revision: 11166 http://sourceforge.net/p/phpwiki/code/11166 Author: vargenau Date: 2025-02-28 14:09:41 +0000 (Fri, 28 Feb 2025) Log Message: ----------- No space in string Modified Paths: -------------- trunk/lib/main.php trunk/themes/default/templates/debug.tmpl Modified: trunk/lib/main.php =================================================================== --- trunk/lib/main.php 2025-02-28 12:41:00 UTC (rev 11165) +++ trunk/lib/main.php 2025-02-28 14:09:41 UTC (rev 11166) @@ -1384,7 +1384,7 @@ MakeWikiZipHtml($this); // I don't think it hurts to add cruft at the end of the zip file. echo "\n========================================================\n"; - echo "PhpWiki " . PHPWIKI_VERSION . "\n"; + echo "PhpWiki" . " " . PHPWIKI_VERSION . "\n"; } public function action_dumpsvn() Modified: trunk/themes/default/templates/debug.tmpl =================================================================== --- trunk/themes/default/templates/debug.tmpl 2025-02-28 12:41:00 UTC (rev 11165) +++ trunk/themes/default/templates/debug.tmpl 2025-02-28 14:09:41 UTC (rev 11166) @@ -11,7 +11,7 @@ alt="Valid CSS 3!" /></a> </div> </td><td> -<span class="debug"><?php echo fmt("PhpWiki ".PHPWIKI_VERSION." "._("Page Execution took %s seconds"), $RUNTIMER->getStats())?> +<span class="debug"><?php echo fmt("PhpWiki"." ".PHPWIKI_VERSION." "._("Page Execution took %s seconds"), $RUNTIMER->getStats())?> <?php $mem = @memory_get_usage(); if ($mem) { ?> <?php $formatted = round($mem/pow(1024,($i=floor(log($mem,1024)))),2).' '.array('b','kb','mb','gb','tb','pb')[$i]; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |