diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-07-09 19:23:50 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-07-09 19:23:50 -0400 |
commit | 8a6bf9a31ab3e4bf0422eedf5aa5845f36512d43 (patch) | |
tree | 5d5a11f4ec1d8697cd0c4c6f1b5ffc86f2b76e48 /actions | |
parent | abcb014f3d6f03ed3a99581130da7b325aeb2303 (diff) |
correct class for ul
darcs-hash:20080709232350-84dde-3e33baad97a5f39f601d8fc5b117a37e182f3ef3.gz
Diffstat (limited to 'actions')
-rw-r--r-- | actions/noticesearch.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/noticesearch.php b/actions/noticesearch.php index 54911d83b..8b2082e8c 100644 --- a/actions/noticesearch.php +++ b/actions/noticesearch.php @@ -51,7 +51,7 @@ class NoticesearchAction extends SearchAction { if ($cnt > 0) { $terms = preg_split('/[\s,]+/', $q); - common_element_start('ul', array('id' => 'notice')); + common_element_start('ul', array('id' => 'notices')); for ($i = 0; $i < min($cnt, NOTICES_PER_PAGE); $i++) { if ($notice->fetch()) { $this->show_notice($notice, $terms); |