aboutsummaryrefslogtreecommitdiff
path: root/actions/user/name.php
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-26 12:00:44 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-26 12:00:44 +0000
commit85aa957de8319e6c2ca6fc39190bb7fd2c5e602d (patch)
treec96028afa0d1e9b099342d580d6dc11a7a0b6b0f /actions/user/name.php
parent27e6aeae6cc813ef7f0dadd67f3002871bce3356 (diff)
downloadelgg-85aa957de8319e6c2ca6fc39190bb7fd2c5e602d.tar.gz
elgg-85aa957de8319e6c2ca6fc39190bb7fd2c5e602d.tar.bz2
Fixes #91 and #97
git-svn-id: https://code.elgg.org/elgg/trunk@1143 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/user/name.php')
-rw-r--r--actions/user/name.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/user/name.php b/actions/user/name.php
index 8ecfa856d..bbeed85ec 100644
--- a/actions/user/name.php
+++ b/actions/user/name.php
@@ -24,7 +24,7 @@
else
$user = get_entity($user_id);
- if ($user)
+ if (($user) && ($name))
{
$user->name = $name;
if ($user->save())