diff options
author | Sarven Capadisli <csarven@controlyourself.ca> | 2009-06-25 18:57:39 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@controlyourself.ca> | 2009-06-25 18:57:39 +0000 |
commit | 0eb77e67532cbbdfd1f099303ae8e1614296b87a (patch) | |
tree | 444303bc5a15ffd815c2f09f2c57d03d4f67e02a /lib/noticelist.php | |
parent | 5cc5bae4a91a6f0ac7bf3569d268e203da78274d (diff) |
Added fragment identifier to the "in context" URL which points to
the notice location in the Conversation page.
Diffstat (limited to 'lib/noticelist.php')
-rw-r--r-- | lib/noticelist.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/noticelist.php b/lib/noticelist.php index 6f05c63d6..44726a17b 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -432,7 +432,7 @@ class NoticeListItem extends Widget $this->out->elementStart('dl', 'response'); $this->out->element('dt', null, _('To')); $this->out->elementStart('dd'); - $this->out->element('a', array('href' => $convurl), + $this->out->element('a', array('href' => $convurl.'#notice-'.$this->notice->id), _('in context')); $this->out->elementEnd('dd'); $this->out->elementEnd('dl'); |