aboutsummaryrefslogtreecommitdiffstats
path: root/admin/group_list.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/group_list.php')
-rw-r--r--admin/group_list.php23
1 files changed, 15 insertions, 8 deletions
diff --git a/admin/group_list.php b/admin/group_list.php
index 9b16cf883..cdf123f4e 100644
--- a/admin/group_list.php
+++ b/admin/group_list.php
@@ -84,14 +84,21 @@ elseif ( isset( $_POST['new'] ) )
elseif ( isset( $_POST['add'] ) )
{
$userdata = getuserdata($_POST['username']);
- if (!$userdata) echo "Utilisateur inexistant";
-
- // create a new association between the user and a group
- $query = 'INSERT INTO '.USER_GROUP_TABLE;
- $query.= ' (user_id,group_id) VALUES';
- $query.= ' ('.$userdata['id'].','.$_POST['edit_group_id'].')';
- $query.= ';';
- pwg_query( $query );
+ if (!$userdata)
+ {
+ array_push($error, $lang['user_err_unknown']);
+ }
+ else
+ {
+ // create a new association between the user and a group
+ $query = '
+INSERT INTO '.USER_GROUP_TABLE.'
+ (user_id,group_id)
+ VALUES
+ ('.$userdata['id'].','.$_POST['edit_group_id'].')
+;';
+ pwg_query($query);
+ }
}
elseif (isset( $_POST['deny_user'] ))
{