From 998a39940b27561d7a2e98b68c8929dab68fe62f Mon Sep 17 00:00:00 2001 From: brettp Date: Wed, 3 Nov 2010 19:46:47 +0000 Subject: Refs #1320. Updated core to use elgg_echo()'s native string replacement. git-svn-id: http://code.elgg.org/elgg/trunk@7227 36083f99-b078-4883-b0ff-0f9b5a30f544 --- actions/comments/add.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'actions/comments/add.php') 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() - ) + )) ); } -- cgit v1.2.3