Explorar el Código

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

David Nos hace 9 años
padre
commit
ec5fd4a69d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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);
     }
 
     /**