From c5860414c0f439eebb913c480dcd9f1aae627c41 Mon Sep 17 00:00:00 2001 From: vargenau Date: Sat, 29 Dec 2012 20:51:48 +0000 Subject: [PATCH] Use HTML list git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@8708 96ab9672-09ca-45d6-a79d-3d69d39ca109 --- lib/plugin/RecentChanges.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/plugin/RecentChanges.php b/lib/plugin/RecentChanges.php index 0583691ea..7ab7f6756 100644 --- a/lib/plugin/RecentChanges.php +++ b/lib/plugin/RecentChanges.php @@ -803,15 +803,14 @@ class _RecentChanges_BoxFormatter 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; -- 2.45.0