diff options
Diffstat (limited to 'actions/comments')
-rw-r--r-- | actions/comments/add.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/actions/comments/add.php b/actions/comments/add.php index b7feb4b66..11418a2e2 100644 --- a/actions/comments/add.php +++ b/actions/comments/add.php @@ -47,15 +47,14 @@ if ($entity->owner_guid != $user->guid) { notify_user($entity->owner_guid, $user->guid, elgg_echo('generic_comment:email:subject'), - sprintf( - elgg_echo('generic_comment:email:body'), + elgg_echo('generic_comment:email:body', array( $entity->title, $user->name, $comment_text, $entity->getURL(), $user->name, $user->getURL() - ) + )) ); } |