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']);