diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-01-14 10:31:47 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-01-14 10:31:47 +0000 |
commit | f2ac90d450c5b6888bf6323466b2dc9c3275f4bd (patch) | |
tree | 17025881a0bde082c9a002502198fdb209e2c7e9 /engine | |
parent | 7df3188f3d83389fc1ddae90002746e80364efee (diff) | |
download | elgg-f2ac90d450c5b6888bf6323466b2dc9c3275f4bd.tar.gz elgg-f2ac90d450c5b6888bf6323466b2dc9c3275f4bd.tar.bz2 |
Closes #675: Posted missing commits from last time.
git-svn-id: https://code.elgg.org/elgg/trunk@2567 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r-- | engine/lib/users.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/users.php b/engine/lib/users.php index 5d5153cc4..3de4044ae 100644 --- a/engine/lib/users.php +++ b/engine/lib/users.php @@ -390,7 +390,7 @@ // Exists and you have access to it
if ($exists = get_data_row("SELECT guid from {$CONFIG->dbprefix}users_entity where guid = {$guid}")) {
- $result = update_data("UPDATE {$CONFIG->dbprefix}users_entity set name='$name', username='$username', password='$password', email='$email', language='$language', code='$code', last_action = ". time() ." where guid = {$guid}");
+ $result = update_data("UPDATE {$CONFIG->dbprefix}users_entity set name='$name', username='$username', password='$password', salt='$salt', email='$email', language='$language', code='$code', last_action = ". time() ." where guid = {$guid}");
if ($result != false)
{
// Update succeeded, continue
|