From d51459b56adaea48eb50ba9d6ef140751077de74 Mon Sep 17 00:00:00 2001 From: Cash Costello Date: Sun, 27 Nov 2011 21:34:41 -0500 Subject: Fixes #3953 adds back the ability to change display name from settings page --- actions/profile/edit.php | 7 +------ views/default/core/settings/account/name.php | 21 ++++++++++++++++----- 2 files changed, 17 insertions(+), 11 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(); } } diff --git a/views/default/core/settings/account/name.php b/views/default/core/settings/account/name.php index 69ffcecaf..f719a84de 100644 --- a/views/default/core/settings/account/name.php +++ b/views/default/core/settings/account/name.php @@ -4,12 +4,23 @@ * * @package Elgg * @subpackage Core - - */ $user = elgg_get_page_owner_entity(); - -// all hidden, but necessary for properly updating user details -echo elgg_view('input/hidden', array('name' => 'name', 'value' => $user->name)); +?> +
+
+

+
+
+

+ : + 'name', 'value' => $user->name)); + ?> +

+
+
+ 'guid', 'value' => $user->guid)); -- cgit v1.2.3