aboutsummaryrefslogtreecommitdiff
path: root/engine/classes/ElggUser.php
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-20 10:09:20 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-20 10:09:20 +0000
commit04fb2f6fc8a49498a8de0600e5e9b4172b27b5f0 (patch)
treedbcb922c81962e2c960c1b1f0a101aeb0b987304 /engine/classes/ElggUser.php
parent2b0f287c514a4e77365455212a43a77b608bd6c2 (diff)
downloadelgg-04fb2f6fc8a49498a8de0600e5e9b4172b27b5f0.tar.gz
elgg-04fb2f6fc8a49498a8de0600e5e9b4172b27b5f0.tar.bz2
Fixes #2490: attributes initialize to NULL instead of empty string or 0. Updated tests to reflect this
git-svn-id: http://code.elgg.org/elgg/trunk@7376 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/classes/ElggUser.php')
-rw-r--r--engine/classes/ElggUser.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/engine/classes/ElggUser.php b/engine/classes/ElggUser.php
index cb2d565fc..8f30be37e 100644
--- a/engine/classes/ElggUser.php
+++ b/engine/classes/ElggUser.php
@@ -37,13 +37,13 @@ class ElggUser extends ElggEntity
parent::initializeAttributes();
$this->attributes['type'] = "user";
- $this->attributes['name'] = "";
- $this->attributes['username'] = "";
- $this->attributes['password'] = "";
- $this->attributes['salt'] = "";
- $this->attributes['email'] = "";
- $this->attributes['language'] = "";
- $this->attributes['code'] = "";
+ $this->attributes['name'] = NULL;
+ $this->attributes['username'] = NULL;
+ $this->attributes['password'] = NULL;
+ $this->attributes['salt'] = NULL;
+ $this->attributes['email'] = NULL;
+ $this->attributes['language'] = NULL;
+ $this->attributes['code'] = NULL;
$this->attributes['banned'] = "no";
$this->attributes['admin'] = 'no';
$this->attributes['tables_split'] = 2;