summaryrefslogtreecommitdiff
path: root/lib/noticelist.php
diff options
context:
space:
mode:
authorsarven <csarven@plantard.controlezvous.ca>2009-01-15 00:21:59 +0000
committersarven <csarven@plantard.controlezvous.ca>2009-01-15 00:21:59 +0000
commit46b1e2fcec9ff084496a4ac11a65c1673f92e1f0 (patch)
tree044ee1bde298c1d061286eb5df6001c318c55ecd /lib/noticelist.php
parent442dcfde0e998e7bc2936a28805629951208ce38 (diff)
showReplyTo() update
Diffstat (limited to 'lib/noticelist.php')
-rw-r--r--lib/noticelist.php12
1 files changed, 8 insertions, 4 deletions
diff --git a/lib/noticelist.php b/lib/noticelist.php
index 45d4abb29..0fe967da3 100644
--- a/lib/noticelist.php
+++ b/lib/noticelist.php
@@ -389,11 +389,15 @@ class NoticeListItem
if ($this->notice->reply_to) {
$replyurl = common_local_url('shownotice',
array('notice' => $this->notice->reply_to));
- common_text(' (');
- common_element('a', array('class' => 'inreplyto',
+ $this->elementStart('dl', 'response');
+ $this->element('dt', null, _('To'));
+ $this->elementStart('dd');
+ $this->element('a', array('class' => 'inreplyto',
'href' => $replyurl),
- _('in reply to...'));
- common_text(')');
+ 'rel' => 'in-reply-to',
+ _('in reply to'));
+ $this->elementEnd('dd');
+ $this->elementEnd('dl');
}
}