Skip to content
Snippets Groups Projects
Commit 77f43c35 authored by Victor Dubiniuk's avatar Victor Dubiniuk
Browse files

User::delete should return bool

parent 6a93994a
No related branches found
No related tags found
No related merge requests found
......@@ -198,6 +198,10 @@ class OC_User {
// Delete user files in /data/
OC_Helper::rmdirr(OC_Config::getValue('datadirectory', OC::$SERVERROOT . '/data') . '/' . $uid . '/');
return true;
} else {
return false;
}
}
......
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