diff options
author | gweltas <gweltas@piwigo.org> | 2004-12-02 15:42:57 +0000 |
---|---|---|
committer | gweltas <gweltas@piwigo.org> | 2004-12-02 15:42:57 +0000 |
commit | b35dc19ab6da173cc663e49cb32389d7e6dbfdee (patch) | |
tree | 1f069c9dea705fd4a6b8c0e4ce8151027ba77433 /include/functions_user.inc.php | |
parent | 19be28e4150ea71c70be8d22f1decc6a38ccf110 (diff) |
Update of the user preferences panel.
Deletion of some PREFIX_TABLE occurences
git-svn-id: http://piwigo.org/svn/trunk@630 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/functions_user.inc.php')
-rw-r--r-- | include/functions_user.inc.php | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/include/functions_user.inc.php b/include/functions_user.inc.php index 9befa6596..1ac224c31 100644 --- a/include/functions_user.inc.php +++ b/include/functions_user.inc.php @@ -116,42 +116,6 @@ function register_user( $login, $password, $password_conf, } $query.= ');'; pwg_query( $query ); - // 3. retrieving the id of the newly created user - $query = 'SELECT id'; - $query.= ' FROM '.USERS_TABLE; - $query.= " WHERE username = '".$login."';"; - $row = mysql_fetch_array( pwg_query( $query ) ); - $user_id = $row['id']; - // 4. adding access to the new user, the same as the user "guest" - $query = 'SELECT cat_id'; - $query.= ' FROM '.PREFIX_TABLE.'user_access as ua'; - $query.= ','.PREFIX_TABLE.'users as u '; - $query.= ' where u.id = ua.user_id'; - $query.= " and u.username = 'guest';"; - $result = pwg_query( $query ); - while( $row = mysql_fetch_array( $result ) ) - { - $query = 'INSERT INTO '.PREFIX_TABLE.'user_access'; - $query.= ' (user_id,cat_id) VALUES'; - $query.= ' ('.$user_id.','.$row['cat_id'].');'; - pwg_query ( $query ); - } - // 5. associate new user to the same groups that the guest - $query = 'SELECT group_id'; - $query.= ' FROM '.PREFIX_TABLE.'user_group AS ug'; - $query.= ', '.PREFIX_TABLE.'users AS u'; - $query.= " WHERE u.username = 'guest'"; - $query.= ' AND ug.user_id = u.id'; - $query.= ';'; - $result = pwg_query( $query ); - while( $row = mysql_fetch_array( $result ) ) - { - $query = 'INSERT INTO '.PREFIX_TABLE.'user_group'; - $query.= ' (user_id,group_id) VALUES'; - $query.= ' ('.$user_id.','.$row['group_id'].')'; - $query.= ';'; - pwg_query ( $query ); - } } return $error; } |