From f9501bd6cef73e88b130c6640087008f8d58ef92 Mon Sep 17 00:00:00 2001 From: cash Date: Sun, 13 Feb 2011 19:44:26 +0000 Subject: Fixes #2848 pulls user settings code out of actions into functions. We should investigate putting them in a library that is only loaded on demand git-svn-id: http://code.elgg.org/elgg/trunk@8204 36083f99-b078-4883-b0ff-0f9b5a30f544 --- actions/user/name.php | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 actions/user/name.php (limited to 'actions/user/name.php') diff --git a/actions/user/name.php b/actions/user/name.php deleted file mode 100644 index 881019e86..000000000 --- a/actions/user/name.php +++ /dev/null @@ -1,34 +0,0 @@ - 50) { - register_error(elgg_echo('user:name:fail')); - forward(REFERER); -} - -if (($user) && ($user->canEdit()) && ($name)) { - if ($name != $user->name) { - $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