diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-11 10:54:58 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-11 10:54:58 +0000 |
commit | cdd5fa899d747c20cc4de20d713d247946940739 (patch) | |
tree | 887c120fa38eae4e53de641e617a4efe3e28955c /actions/user | |
parent | d90f192e7e138268091ab1f2e7f51ad6e99a7eea (diff) | |
download | elgg-cdd5fa899d747c20cc4de20d713d247946940739.tar.gz elgg-cdd5fa899d747c20cc4de20d713d247946940739.tar.bz2 |
Using register_error on errors rather than system_message.
Also, fixed widget save to handle arrays (Refs #135)
git-svn-id: https://code.elgg.org/elgg/trunk@1400 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/user')
-rw-r--r-- | actions/user/language.php | 4 | ||||
-rw-r--r-- | actions/user/name.php | 4 | ||||
-rw-r--r-- | actions/user/password.php | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/actions/user/language.php b/actions/user/language.php index f0b91791e..77168cd34 100644 --- a/actions/user/language.php +++ b/actions/user/language.php @@ -30,10 +30,10 @@ if ($user->save()) system_message(elgg_echo('user:language:success')); else - system_message(elgg_echo('user:language:fail')); + register_error(elgg_echo('user:language:fail')); } else - system_message(elgg_echo('user:language:fail')); + register_error(elgg_echo('user:language:fail')); //forward($_SERVER['HTTP_REFERER']); //exit; diff --git a/actions/user/name.php b/actions/user/name.php index b93c804b3..5bda16ebc 100644 --- a/actions/user/name.php +++ b/actions/user/name.php @@ -30,10 +30,10 @@ if ($user->save()) system_message(elgg_echo('user:name:success')); else - system_message(elgg_echo('user:name:fail')); + register_error(elgg_echo('user:name:fail')); } else - system_message(elgg_echo('user:name:fail')); + register_error(elgg_echo('user:name:fail')); //forward($_SERVER['HTTP_REFERER']); //exit; diff --git a/actions/user/password.php b/actions/user/password.php index ec3252644..c53188a00 100644 --- a/actions/user/password.php +++ b/actions/user/password.php @@ -35,13 +35,13 @@ if ($user->save()) system_message(elgg_echo('user:password:success')); else - system_message(elgg_echo('user:password:fail')); + register_error(elgg_echo('user:password:fail')); } else - system_message(elgg_echo('user:password:fail:notsame')); + register_error(elgg_echo('user:password:fail:notsame')); } else - system_message(elgg_echo('user:password:fail:tooshort')); + register_error(elgg_echo('user:password:fail:tooshort')); } //forward($_SERVER['HTTP_REFERER']); |