diff --git a/interface/lib/classes/remoting_lib.inc.php b/interface/lib/classes/remoting_lib.inc.php index 57ff99807becee59b202ea4c2524d5255ec7ef96..1a62b23bcf1f5e705a91448d53d9df21f442092b 100644 --- a/interface/lib/classes/remoting_lib.inc.php +++ b/interface/lib/classes/remoting_lib.inc.php @@ -701,7 +701,7 @@ class remoting_lib { function ispconfig_sysuser_update($params,$client_id){ global $app; $username = $app->db->quote($params["username"]); - $password = $app->db->quote($params["password"]); + $clear_password = $app->db->quote($params["password"]); $client_id = intval($client_id); $salt="$1$"; $base64_alphabet='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; @@ -709,8 +709,9 @@ class remoting_lib { $salt.=$base64_alphabet[mt_rand(0,63)]; } $salt.="$"; - $password = crypt(stripslashes($password),$salt); - $sql = "UPDATE sys_user set username = '$username', passwort = '$password' WHERE client_id = $client_id"; + $password = crypt(stripslashes($clear_password),$salt); + if ($clear_password) $pwstring = ", passwort = '$password'"; else $pwstring ="" ; + $sql = "UPDATE sys_user set username = '$username' $pwstring WHERE client_id = $client_id"; $app->db->query($sql); }