From a7db6216fad30dd07ce52bd687c670ea4f0ebb77 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 9 Jul 2008 03:14:39 -0400 Subject: fallback to newnotice on reply button, new button with mouseover darcs-hash:20080709071439-84dde-f85f0e97f7c14bb77b7174f281e3e9f75c23cac1.gz --- lib/stream.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'lib/stream.php') diff --git a/lib/stream.php b/lib/stream.php index bef3abff0..8846920ef 100644 --- a/lib/stream.php +++ b/lib/stream.php @@ -86,7 +86,6 @@ class StreamAction extends Action { 'href' => $noticeurl, 'title' => common_exact_date($notice->created)), common_date_string($notice->created)); - common_element('a', array('href' => "#", 'onclick' => 'javascript: doreply("'.$profile->nickname.'")', 'class' => 'replybutton'), 'reply'); if ($replied_id) { $replyurl = common_local_url('shownotice', array('notice' => $replied_id)); common_text('('); @@ -95,6 +94,13 @@ class StreamAction extends Action { _t(' in reply to...')); common_text(')'); } + common_element('a', + array('href' => common_local_url('newnotice', + array('replyto' => $profile->nickname)), + 'onclick' => 'doreply("'.$profile->nickname.'")', + 'title' => _t('reply'), + 'class' => 'replybutton'), + _t('↺')); common_element_end('p'); common_element_end('li'); } -- cgit v1.2.3-54-g00ecf