diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-04-04 12:05:42 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-04-04 12:05:42 +0000 |
commit | d672c9ed0d507c854e8bd82940e81e90a3d4b186 (patch) | |
tree | b7ee569cb2314e29a3c32479c5fabee51719f35e /mod/likes/start.php | |
parent | 3791cda0bb2f35a1f8d57b90600efbff15bfec6d (diff) | |
download | elgg-d672c9ed0d507c854e8bd82940e81e90a3d4b186.tar.gz elgg-d672c9ed0d507c854e8bd82940e81e90a3d4b186.tar.bz2 |
Refs #3073 first version of horizontal river menu. css still needs work for likes and the comment text bubble needs to be darkened
git-svn-id: http://code.elgg.org/elgg/trunk@8935 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/likes/start.php')
-rw-r--r-- | mod/likes/start.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/likes/start.php b/mod/likes/start.php index ef46c9ef2..435e7a3ab 100644 --- a/mod/likes/start.php +++ b/mod/likes/start.php @@ -56,7 +56,7 @@ function likes_river_menu_setup($hook, $type, $return, $params) { $options = array( 'name' => 'like', 'href' => $url, - 'text' => elgg_echo('likes:likethis'), + 'text' => elgg_view('likes/display', array('entity' => $object)), 'is_action' => true, 'priority' => 100, ); @@ -71,7 +71,7 @@ function likes_river_menu_setup($hook, $type, $return, $params) { $options = array( 'name' => 'like', 'href' => $url, - 'text' => elgg_echo('likes:remove'), + 'text' => elgg_view('likes/display', array('entity' => $object)), 'is_action' => true, 'priority' => 100, ); |