Merge pull request #5552 from owncloud/admin-warninghomeexistsfix

Fixed user dir existence check when creating new user
This commit is contained in:
Thomas Müller 2013-10-27 03:11:11 -07:00
commit aa06983345
1 changed files with 4 additions and 4 deletions

View File

@ -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