From 6f093b80972c891c058dd257c2021d2721105395 Mon Sep 17 00:00:00 2001 From: Alejandro Gallardo Escobar Date: Thu, 13 Aug 2015 10:41:14 +0200 Subject: [PATCH] Fixed an error in the remote user autocreation It was impossible to add tags to the autocreated user --- pandora_console/include/auth/mysql.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pandora_console/include/auth/mysql.php b/pandora_console/include/auth/mysql.php index 203c4b5bdb..782c3ea88b 100644 --- a/pandora_console/include/auth/mysql.php +++ b/pandora_console/include/auth/mysql.php @@ -271,7 +271,7 @@ function process_user_login_remote ($login, $pass, $api = false) { return false; } } - else{ + else { // Create the user in the local database if (create_user ($login, $pass, array ('fullname' => $login, @@ -280,9 +280,8 @@ function process_user_login_remote ($login, $pass, $api = false) { $config["auth_error"] = __("User not found in database or incorrect password"); return false; } - profile_create_user_profile ($login, - $config['default_remote_profile'], - $config['default_remote_group']); + profile_create_user_profile ($login, $config['default_remote_profile'], + $config['default_remote_group'], false, $config['default_assign_tags']); } return $login;