Skip to content

Commit

Permalink
showReplyTo() update
Browse files Browse the repository at this point in the history
  • Loading branch information
sarven committed Jan 15, 2009
1 parent 442dcfd commit 46b1e2f
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions lib/noticelist.php
Original file line number Diff line number Diff line change
Expand Up @@ -389,11 +389,15 @@ function showReplyTo()
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');
}
}

Expand Down

0 comments on commit 46b1e2f

Please sign in to comment.