diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-09-09 18:18:43 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-09-09 18:18:43 +0000 |
commit | 8e657f64efb3c3e12365d1c33e6ab89e40d9bfd5 (patch) | |
tree | af96a46601a88e0be7089151a7bdb95afd54c310 /modules/user/user.module | |
parent | accebe358c1cb4b07e6dba7f9f7776fe3b09d242 (diff) | |
download | brdo-8e657f64efb3c3e12365d1c33e6ab89e40d9bfd5.tar.gz brdo-8e657f64efb3c3e12365d1c33e6ab89e40d9bfd5.tar.bz2 |
- Gerhard's uid 0 patches. These patches bring various performance
improvements. Requires a database update.
Diffstat (limited to 'modules/user/user.module')
-rw-r--r-- | modules/user/user.module | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index 8c57b40da..2759ff4d7 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -142,6 +142,7 @@ function user_save($account, $array = array()) { } else { $array["timestamp"] = time(); + $array["uid"] = db_next_id("user_uid"); foreach ($array as $key => $value) { if ($key == "pass") { |