createUser() needs to return something; the user object or false

This commit is contained in:
Björn Schießle 2013-06-11 13:48:17 +02:00
parent 4f0f537b42
commit 118f2b3283

View file

@ -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);
}
/**