From: <var...@us...> - 2012-12-29 20:51:56
|
Revision: 8708 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8708&view=rev Author: vargenau Date: 2012-12-29 20:51:48 +0000 (Sat, 29 Dec 2012) Log Message: ----------- Use HTML list Modified Paths: -------------- trunk/lib/plugin/RecentChanges.php Modified: trunk/lib/plugin/RecentChanges.php =================================================================== --- trunk/lib/plugin/RecentChanges.php 2012-12-29 20:26:09 UTC (rev 8707) +++ trunk/lib/plugin/RecentChanges.php 2012-12-29 20:51:48 UTC (rev 8708) @@ -803,15 +803,14 @@ include_once 'lib/InlineParser.php'; $last_date = ''; $first = true; - $html = HTML(); + $html = HTML::ul(); $counter = 1; - $sp = HTML::Raw("\n · "); while ($rev = $changes->next()) { // enforce view permission if (mayAccessPage('view', $rev->_pagename)) { if ($link = $this->pageLink($rev)) // some entries may be empty // (/Blog/.. interim pages) - $html->pushContent($sp, $link, HTML::br()); + $html->pushContent(HTML::li($link)); if ($first) $this->setValidators($rev); $first = false; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |