Skip to content
Snippets Groups Projects
Commit a89dedf7 authored by Robin Appelman's avatar Robin Appelman
Browse files

Merge pull request #3671 from owncloud/fix_user_creation

createUser() needs to return something; the user object or false
parents 74825de0 118f2b32
Branches
No related tags found
No related merge requests found
...@@ -213,7 +213,7 @@ class OC_User { ...@@ -213,7 +213,7 @@ class OC_User {
* Allowed characters in the username are: "a-z", "A-Z", "0-9" and "_.@-" * Allowed characters in the username are: "a-z", "A-Z", "0-9" and "_.@-"
*/ */
public static function createUser($uid, $password) { public static function createUser($uid, $password) {
self::getManager()->createUser($uid, $password); return self::getManager()->createUser($uid, $password);
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment