From: <var...@us...> - 2020-03-23 11:21:55
|
Revision: 10154 http://sourceforge.net/p/phpwiki/code/10154 Author: vargenau Date: 2020-03-23 11:21:53 +0000 (Mon, 23 Mar 2020) Log Message: ----------- print is enough Modified Paths: -------------- trunk/lib/plugin/RecentChanges.php Modified: trunk/lib/plugin/RecentChanges.php =================================================================== --- trunk/lib/plugin/RecentChanges.php 2020-03-23 10:43:05 UTC (rev 10153) +++ trunk/lib/plugin/RecentChanges.php 2020-03-23 11:21:53 UTC (rev 10154) @@ -743,17 +743,17 @@ elseif (!empty($pagematch)) $title = $pagematch; else $title = WIKI_NAME . $show_minor ? _("RecentEdits") : _("RecentChanges"); - printf("<title>" . $title . "</title>\n"); + print("<title>" . $title . "</title>\n"); global $WikiTheme; $css = $WikiTheme->getCSS(); $css->printXML(); - printf("</head>\n"); + print("</head>\n"); - printf("<body class=\"sidebar\">\n"); + print("<body class=\"sidebar\">\n"); $html->printXML(); echo '<a href="http://www.feedvalidator.org/check.cgi?url=http://phpwiki.demo.free.fr/index.php/RecentChanges?format=rss"><img src="themes/default/buttons/valid-rss.png" alt="[Valid RSS]" title="Validate the RSS feed" width="44" height="15" /></a>'; - printf("\n</body>\n"); - printf("</html>\n"); + print("\n</body>\n"); + print("</html>\n"); $request->finish(); // cut rest of page processing short } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |