Browse Source

Fixed bug on create user webservice: extra fields method didn't return result so just the first one extra field was processed.

David Nos 9 years ago
parent
commit
ec5fd4a69d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main/inc/lib/usermanager.lib.php

+ 1 - 1
main/inc/lib/usermanager.lib.php

@@ -1830,7 +1830,7 @@ class UserManager
             'variable' => $variable,
             'value' => $value
         ];
-        $extraFieldValue->save($params);
+        return $extraFieldValue->save($params);
     }
 
     /**