From 1d9e80aeaacd698be3afcb5046856db0a6a333a5 Mon Sep 17 00:00:00 2001 From: marcus Date: Fri, 16 Jan 2009 16:48:44 +0000 Subject: Closes #689: Email now only changed if it is different than the one registered, also a number of other settings changed in this way. git-svn-id: https://code.elgg.org/elgg/trunk@2576 36083f99-b078-4883-b0ff-0f9b5a30f544 --- actions/user/language.php | 13 ++++++++----- actions/user/name.php | 13 ++++++++----- 2 files changed, 16 insertions(+), 10 deletions(-) (limited to 'actions/user') diff --git a/actions/user/language.php b/actions/user/language.php index 704939ca1..7a383b3a0 100644 --- a/actions/user/language.php +++ b/actions/user/language.php @@ -26,11 +26,14 @@ if (($user) && ($language)) { - $user->language = $language; - if ($user->save()) - system_message(elgg_echo('user:language:success')); - else - register_error(elgg_echo('user:language:fail')); + if (strcmp($language, $user->language)!=0) + { + $user->language = $language; + if ($user->save()) + system_message(elgg_echo('user:language:success')); + else + register_error(elgg_echo('user:language:fail')); + } } else register_error(elgg_echo('user:language:fail')); diff --git a/actions/user/name.php b/actions/user/name.php index 65809323c..d00b86a17 100644 --- a/actions/user/name.php +++ b/actions/user/name.php @@ -26,11 +26,14 @@ if (($user) && ($name)) { - $user->name = $name; - if ($user->save()) - system_message(elgg_echo('user:name:success')); - else - register_error(elgg_echo('user:name:fail')); + if (strcmp($name, $user->name)!=0) + { + $user->name = $name; + if ($user->save()) + system_message(elgg_echo('user:name:success')); + else + register_error(elgg_echo('user:name:fail')); + } } else register_error(elgg_echo('user:name:fail')); -- cgit v1.2.3