summaryrefslogtreecommitdiff
path: root/actions/replies.php
diff options
context:
space:
mode:
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;