From 27b2c26c54f8fdae54208bba48aba1536c90cda4 Mon Sep 17 00:00:00 2001 From: jacob Date: Tue, 6 Oct 2009 16:49:18 +0000 Subject: [PATCH] Removed an unnecessary i18n call --- admin/donors.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/donors.php b/admin/donors.php index ed2e853..84f5015 100644 --- a/admin/donors.php +++ b/admin/donors.php @@ -137,13 +137,13 @@ function save_contact(){ // load or create the user, according to the situation if($_POST['recordtype'] == 'new'){ // this is a new record being submitted. Create the user. - $successMessage = i18n("Contact created successfully"); + $successMessage = "Contact created successfully"; $successLog = "Added contact "; $u = user_create("sponsor", $_POST['email']); $id = $u['id']; }else if($_POST['recordtype'] == 'existing'){ // this is an existing record being updated. Load the user. - $successMessage = i18n("Contact updated successfully"); + $successMessage = "Contact updated successfully"; $successLog = "Updated contact "; $u = user_load($_POST['userid']);