From 7ddd9521b3f3a397da3b0a6b56238d31414eb4be Mon Sep 17 00:00:00 2001 From: brettp Date: Thu, 28 Oct 2010 19:17:36 +0000 Subject: Standardized code in all of core, not including language files, tests, or core mods. git-svn-id: http://code.elgg.org/elgg/trunk@7124 36083f99-b078-4883-b0ff-0f9b5a30f544 --- actions/useradd.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'actions/useradd.php') diff --git a/actions/useradd.php b/actions/useradd.php index c46b7fb96..8e287e1d8 100644 --- a/actions/useradd.php +++ b/actions/useradd.php @@ -25,7 +25,7 @@ if (is_array($admin)) { try { $guid = register_user($username, $password, $name, $email, TRUE); - if (((trim($password) != "") && (strcmp($password, $password2)==0)) && ($guid)) { + if (((trim($password) != "") && (strcmp($password, $password2) == 0)) && ($guid)) { $new_user = get_entity($guid); if (($guid) && ($admin)) { $new_user->makeAdmin(); @@ -35,9 +35,13 @@ try { $new_user->created_by_guid = get_loggedin_userid(); set_user_validation_status($new_user->getGUID(), TRUE, 'admin_created'); - notify_user($new_user->guid, $CONFIG->site->guid, elgg_echo('useradd:subject'), sprintf(elgg_echo('useradd:body'), $name, $CONFIG->site->name, $CONFIG->site->url, $username, $password)); + $subject = elgg_echo('useradd:subject'); + $body = sprintf(elgg_echo('useradd:body'), $name, + $CONFIG->site->name, $CONFIG->site->url, $username, $password); - system_message(sprintf(elgg_echo("adduser:ok"),$CONFIG->sitename)); + notify_user($new_user->guid, $CONFIG->site->guid, $subject, $body); + + system_message(sprintf(elgg_echo("adduser:ok"), $CONFIG->sitename)); } else { register_error(elgg_echo("adduser:bad")); } -- cgit v1.2.3