Skip to content
Snippets Groups Projects
Commit 1ee4b680 authored by Vincent Petry's avatar Vincent Petry
Browse files

Fixed user dir existence check when creating new user

The check was done too later. It turns out that createUser() had already
created the dir, which caused the warning message to be shown every
time.
parent 3fc23237
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,10 @@ $password = $_POST["password"];
// Return Success story
try {
// check whether the user's files home exists
$userDirectory = OC_User::getHome($username) . '/files/';
$homeExists = file_exists($userDirectory);
if (!OC_User::createUser($username, $password)) {
OC_JSON::error(array('data' => array( 'message' => 'User creation failed for '.$username )));
exit();
......@@ -39,10 +43,6 @@ try {
OC_Group::addToGroup( $username, $i );
}
// check whether the user's files home exists
$userDirectory = OC_User::getHome($username) . '/files/';
$homeExists = file_exists($userDirectory);
OC_JSON::success(array("data" =>
array(
// returns whether the home already existed
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment