]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
better arrow
authorEvan Prodromou <evan@prodromou.name>
Wed, 9 Jul 2008 07:50:45 +0000 (03:50 -0400)
committerEvan Prodromou <evan@prodromou.name>
Wed, 9 Jul 2008 07:50:45 +0000 (03:50 -0400)
darcs-hash:20080709075045-84dde-c00a97cfed2eb1c560f3cc2581d29f29b2eb32b2.gz

lib/stream.php

index 6bc263ed64e26f7a712f4a16a28e7ac1ed77c048..431580b13662cd2d2d4c3cee0dba3c5ac3d21f00 100644 (file)
@@ -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');
        }