Browse Source

Fixed call to editUserHelper in webservices - refs #5730

Jose Manuel Abuin Mosquera 12 years ago
parent
commit
7e4d8b80b8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main/webservices/webservice_user.php

+ 1 - 1
main/webservices/webservice_user.php

@@ -383,7 +383,7 @@ class WSUser extends WS {
 		if($verifKey instanceof WSError) {
 			$this->handleError($verifKey);
 		} else {
-			$result = $this->editUserHelper($user_id_field_name, $user_id_value, $firstname, $lastname, $status, $loginname, $password, $encrypt_method, $user_id_field_name, $email, $language, $phone, $expiration_date, $extras);
+			$result = $this->editUserHelper($user_id_field_name, $user_id_value, $firstname, $lastname, $status, $loginname, $password, $encrypt_method, $email, $language, $phone, $expiration_date, $extras);
 			if($result instanceof WSError) {
 				$this->handleError($result);
 			}