summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-01-23 03:49:56 +0100
committerEvan Prodromou <evan@controlyourself.ca>2009-01-23 03:49:56 +0100
commiteb156741f83cb2beab1d02007ad4a3b440a5189a (patch)
treef4e200b8b2286d6fa0554fbbabd1994cfa7a55fe /lib
parent4bd3eae79dec8fb99602a7a1aef0e96c17972778 (diff)
parent0905586355a4e3a8c924ab8dfb5e89818b6e6270 (diff)
Merge branch 'master' of evan@dev.controlyourself.ca:/var/www/trunk
Diffstat (limited to 'lib')
-rw-r--r--lib/noticelist.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/noticelist.php b/lib/noticelist.php
index 07912c552..8b0c5f322 100644
--- a/lib/noticelist.php
+++ b/lib/noticelist.php
@@ -22,6 +22,7 @@
* @category UI
* @package Laconica
* @author Evan Prodromou <evan@controlyourself.ca>
+ * @author Sarven Capadisli <csarven@controlyourself.ca>
* @copyright 2008 Control Yourself, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://laconi.ca/
@@ -440,8 +441,11 @@ class NoticeListItem extends Widget
$this->out->elementStart('dl', 'notice_reply');
$this->out->element('dt', null, _('Reply to this notice'));
$this->out->elementStart('dd');
- $this->out->element('a', array('href' => $reply_url,
- 'title' => _('Reply to this notice')), _('Reply'));
+ $this->out->elementStart('a', array('href' => $reply_url,
+ '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');
}