Merge pull request #3671 from owncloud/fix_user_creation

createUser() needs to return something; the user object or false
remotes/origin/stable6
icewind1991 12 years ago
commit a89dedf70d
  1. 2
      lib/user.php

@ -213,7 +213,7 @@ class OC_User {
* Allowed characters in the username are: "a-z", "A-Z", "0-9" and "_.@-"
*/
public static function createUser($uid, $password) {
self::getManager()->createUser($uid, $password);
return self::getManager()->createUser($uid, $password);
}
/**

Loading…
Cancel
Save