From 9fc63a56a2280c69f55b747e4c1a78b45ea799a6 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 7 Jan 2010 17:28:31 -0800 Subject: [PATCH] make a list of plugins --- actions/version.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/actions/version.php b/actions/version.php index 92a59ed474..3d74560c71 100644 --- a/actions/version.php +++ b/actions/version.php @@ -158,7 +158,10 @@ class VersionAction extends Action if (count($this->pluginVersions)) { $this->element('h2', null, _('Plugins')); + $this->elementStart('ul'); + foreach ($this->pluginVersions as $plugin) { + $this->elementStart('li'); $this->elementStart('dl'); $this->element('dt', null, _('Name')); if (array_key_exists('homepage', $plugin)) { @@ -185,7 +188,9 @@ class VersionAction extends Action $this->element('dd', null, $plugin['description']); } $this->elementEnd('dl'); + $this->elementEnd('li'); } + $this->elementEnd('ul'); } }