diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-12-11 18:12:52 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-12-11 18:12:52 -0500 |
commit | 8dcce13297dce70d993956c2e05f2b91f3c19c46 (patch) | |
tree | ca9f3659a0e9195498ea07f61cf008ed0e8abea2 /actions/favorited.php | |
parent | d3f0a9eeee1574c095274853311c7c2998d7a200 (diff) |
make a new NoticeList widget and call it from StreamAction
I made a new notice-list widget (like the profile list) and call it
from StreamAction. This cleans up some of the mess in the various
notice-stream-showing classes.
I also changed show-stream so it uses a subclass of NoticeList that
doesn't show author info (which is unnecessary).
darcs-hash:20081211231252-5ed1f-ee6e551ed5a029406748120f12e2ff57c4a86493.gz
Diffstat (limited to 'actions/favorited.php')
-rw-r--r-- | actions/favorited.php | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/actions/favorited.php b/actions/favorited.php index 16bd8f226..13962b42e 100644 --- a/actions/favorited.php +++ b/actions/favorited.php @@ -88,19 +88,7 @@ class FavoritedAction extends StreamAction { $notice->query(sprintf('SELECT * FROM notice WHERE id in (%s)', implode(',', $notice_list))); - $cnt = 0; - - if ($notice) { - common_element_start('ul', array('id' => 'notices')); - while ($notice->fetch()) { - $cnt++; - if ($cnt > NOTICES_PER_PAGE) { - break; - } - $this->show_notice($notice); - } - common_element_end('ul'); - } + $cnt = $this->show_notice_list($notice); common_pagination($page > 1, $cnt > NOTICES_PER_PAGE, $page, 'favorited'); |