summaryrefslogtreecommitdiff
path: root/actions/replies.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-07-07 02:41:55 -0400
committerEvan Prodromou <evan@prodromou.name>2008-07-07 02:41:55 -0400
commit7b50acbc524159ed13c56dd28706f5c359c0073d (patch)
tree17b423f741147c5106eb8bd01e400dbc8b7a3210 /actions/replies.php
parentdcb6ee85448c555c43d8a0260d85f901a662df7b (diff)
consolidate show_notice and show_reply
darcs-hash:20080707064155-84dde-fb6209b36ff8066335249c0602b2e78961f90c55.gz
Diffstat (limited to 'actions/replies.php')
-rw-r--r--actions/replies.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/replies.php b/actions/replies.php
index a371f3787..463d9e338 100644
--- a/actions/replies.php
+++ b/actions/replies.php
@@ -80,7 +80,7 @@ class RepliesAction extends StreamAction {
$cnt = $reply->find();
if ($cnt > 0) {
- common_element_start('ul', array('id' => 'replies'));
+ common_element_start('ul', array('id' => 'notices'));
for ($i = 0; $i < min($cnt, NOTICES_PER_PAGE); $i++) {
if ($reply->fetch()) {
$notice = new Notice();
@@ -89,7 +89,7 @@ class RepliesAction extends StreamAction {
if (!$result) {
continue;
}
- $this->show_reply($notice, $reply->replied_id);
+ $this->show_notice($notice, $reply->replied_id);
} else {
// shouldn't happen!
break;