diff options
Diffstat (limited to 'actions/all.php')
-rw-r--r-- | actions/all.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/all.php b/actions/all.php index f1a2229f0..452232929 100644 --- a/actions/all.php +++ b/actions/all.php @@ -40,12 +40,12 @@ class AllAction extends ShowstreamAction { $notice->find(); - common_start_element('div', 'notices'); + common_element_start('div', 'notices'); while ($notice->fetch()) { $this->show_notice($notice); } - common_end_element('div'); + common_element_end('div'); } } |