diff options
author | cash <cash.costello@gmail.com> | 2011-09-30 17:03:51 -0400 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-09-30 17:03:51 -0400 |
commit | d50ec282fa3da9947968e959affd48825b2a7bbb (patch) | |
tree | 8817b381cfdf8e0f4f1b97444d3c383bc6acf14c /mod/likes/views | |
parent | 150452e26d589bddcd74fa65a1b320f16574613c (diff) | |
download | elgg-d50ec282fa3da9947968e959affd48825b2a7bbb.tar.gz elgg-d50ec282fa3da9947968e959affd48825b2a7bbb.tar.bz2 |
Fixes #3904 action word should come first for encode_text parameter
Diffstat (limited to 'mod/likes/views')
-rw-r--r-- | mod/likes/views/default/annotation/likes.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/likes/views/default/annotation/likes.php b/mod/likes/views/default/annotation/likes.php index e1ae20818..2dd01b6cd 100644 --- a/mod/likes/views/default/annotation/likes.php +++ b/mod/likes/views/default/annotation/likes.php @@ -31,7 +31,7 @@ if ($like->canEdit()) { 'href' => "action/likes/delete?annotation_id={$like->id}", 'text' => "<span class=\"elgg-icon elgg-icon-delete right\"></span>", 'confirm' => elgg_echo('deleteconfirm'), - 'text_encode' => false, + 'encode_text' => false, )); } |