summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@controlyourself.ca>2009-07-25 18:26:00 +0000
committerSarven Capadisli <csarven@controlyourself.ca>2009-07-25 18:26:00 +0000
commit0b47e71e7a693b6bd9230043c6e1078059de16f6 (patch)
treeba548bc9ca34d29710b4ef92f1e6dd5bcec9a3a6 /lib
parente37834191082a76370525b41ad57ae56f726fc65 (diff)
Removed <dl> structure from NoticeListItem::showContext. Same as
committ e0b877b26c5e93809b2a53b6c46326d5e31fa0e8.
Diffstat (limited to 'lib')
-rw-r--r--lib/noticelist.php8
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/noticelist.php b/lib/noticelist.php
index 7d363a5a2..a8d5059ca 100644
--- a/lib/noticelist.php
+++ b/lib/noticelist.php
@@ -424,13 +424,9 @@ class NoticeListItem extends Widget
&& $this->notice->conversation != $this->notice->id) {
$convurl = common_local_url('conversation',
array('id' => $this->notice->conversation));
- $this->out->elementStart('dl', 'response');
- $this->out->element('dt', null, _('To'));
- $this->out->elementStart('dd');
- $this->out->element('a', array('href' => $convurl.'#notice-'.$this->notice->id),
+ $this->out->element('a', array('href' => $convurl.'#notice-'.$this->notice->id,
+ 'class' => 'response'),
_('in context'));
- $this->out->elementEnd('dd');
- $this->out->elementEnd('dl');
}
}