]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
false is default for encode text in output/url -- no need to specify
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>
Tue, 1 Mar 2011 01:46:16 +0000 (01:46 +0000)
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>
Tue, 1 Mar 2011 01:46:16 +0000 (01:46 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@8518 36083f99-b078-4883-b0ff-0f9b5a30f544

views/default/core/likes/display.php

index addcee1996a7f295f28a5d8020de83a9371302ff..bb6048d61d7dcaf81da6141c3c24c2592a5a1b43 100644 (file)
@@ -22,7 +22,6 @@ if (elgg_is_logged_in() && $vars['entity']->canAnnotate(0, 'likes')) {
                        'text' => elgg_view_icon('likes'),
                        'title' => elgg_echo('likes:likethis'),
                        'is_action' => true,
-                       'encode_text' => false,
                );
                $likes_button = elgg_view('output/url', $params);
        } else {
@@ -38,7 +37,6 @@ if (elgg_is_logged_in() && $vars['entity']->canAnnotate(0, 'likes')) {
                        'text' => elgg_view_icon('liked'),
                        'title' => elgg_echo('likes:remove'),
                        'is_action' => true,
-                       'encode_text' => false,
                );
                $likes_button = elgg_view('output/url', $params);
        }