diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-11-27 21:34:41 -0500 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-11-28 21:44:02 -0500 |
commit | 4a151030205c2e3bbdf609472627843040270b50 (patch) | |
tree | e638c15cc59df20752c92efa62c50cb9dd8c580f /actions/profile/edit.php | |
parent | c02c507362c9b50a6a7896c7c877bf0f127c819a (diff) | |
download | elgg-4a151030205c2e3bbdf609472627843040270b50.tar.gz elgg-4a151030205c2e3bbdf609472627843040270b50.tar.bz2 |
Fixes #3953 adds back the ability to change display name from settings page
Diffstat (limited to 'actions/profile/edit.php')
-rw-r--r-- | actions/profile/edit.php | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/actions/profile/edit.php b/actions/profile/edit.php index e86053b07..8ca60f246 100644 --- a/actions/profile/edit.php +++ b/actions/profile/edit.php @@ -62,12 +62,7 @@ if ($name) { register_error(elgg_echo('user:name:fail')); } elseif ($owner->name != $name) { $owner->name = $name; - // @todo this is weird...giving two notifications? - if ($owner->save()) { - system_message(elgg_echo('user:name:success')); - } else { - register_error(elgg_echo('user:name:fail')); - } + $owner->save(); } } |