summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@controlyourself.ca>2009-07-25 17:44:19 +0000
committerSarven Capadisli <csarven@controlyourself.ca>2009-07-25 17:44:19 +0000
commit66a959a7762474e00264ddf942fb7b681bdf2045 (patch)
tree266a0cf5002be55b5cd6967afbc261d16bc560e5 /lib
parente0b877b26c5e93809b2a53b6c46326d5e31fa0e8 (diff)
Removed <dl> structure from NoticeListItem::showReplyLink. Reason:
Same as commit e0b877b26c5e93809b2a53b6c46326d5e31fa0e8.
Diffstat (limited to 'lib')
-rw-r--r--lib/noticelist.php7
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/noticelist.php b/lib/noticelist.php
index d4d4fc711..0bd98fef7 100644
--- a/lib/noticelist.php
+++ b/lib/noticelist.php
@@ -453,17 +453,12 @@ class NoticeListItem extends Widget
if (common_logged_in()) {
$reply_url = common_local_url('newnotice',
array('replyto' => $this->profile->nickname));
-
- $this->out->elementStart('dl', 'notice_reply');
- $this->out->element('dt', null, _('Reply to this notice'));
- $this->out->elementStart('dd');
$this->out->elementStart('a', array('href' => $reply_url,
+ 'class' => 'notice_reply',
'title' => _('Reply to this notice')));
$this->out->text(_('Reply'));
$this->out->element('span', 'notice_id', $this->notice->id);
$this->out->elementEnd('a');
- $this->out->elementEnd('dd');
- $this->out->elementEnd('dl');
}
}