summaryrefslogtreecommitdiff
path: root/lib/stream.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-07-09 03:50:45 -0400
committerEvan Prodromou <evan@prodromou.name>2008-07-09 03:50:45 -0400
commit59866e0648e036b966c861728e0cd23d4b8d42be (patch)
treed32c34a14a0060749c813068d79c61035e409831 /lib/stream.php
parent8c575041dcefaa5e732022f950a98887262c568c (diff)
better arrow
darcs-hash:20080709075045-84dde-c00a97cfed2eb1c560f3cc2581d29f29b2eb32b2.gz
Diffstat (limited to 'lib/stream.php')
-rw-r--r--lib/stream.php15
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/stream.php b/lib/stream.php
index 6bc263ed6..431580b13 100644
--- a/lib/stream.php
+++ b/lib/stream.php
@@ -94,13 +94,14 @@ 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.'"); return false',
- 'title' => _t('reply'),
- 'class' => 'replybutton'),
- _t('↺'));
+ common_element_start('a',
+ array('href' => common_local_url('newnotice',
+ array('replyto' => $profile->nickname)),
+ 'onclick' => 'doreply("'.$profile->nickname.'"); return false',
+ 'title' => _t('reply'),
+ 'class' => 'replybutton'));
+ common_raw('&rarr;');
+ common_element_end('a');
common_element_end('p');
common_element_end('li');
}