diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-10-23 16:16:46 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-10-23 16:16:46 +0200 |
commit | 7424f3aef6ecdb1b62f4ab4ff0d23ade9011ad77 (patch) | |
tree | e9cf72f3d6813d564baa9c286d0461afd0a27b34 /lib/connector | |
parent | 707bd68bb4e77b4184b578699d508750653e2d42 (diff) | |
parent | ab944094e2c0c9d063cc363a81dbe517c259a466 (diff) | |
download | nextcloud-server-7424f3aef6ecdb1b62f4ab4ff0d23ade9011ad77.tar.gz nextcloud-server-7424f3aef6ecdb1b62f4ab4ff0d23ade9011ad77.zip |
merge master into filesystem
Diffstat (limited to 'lib/connector')
-rw-r--r-- | lib/connector/sabre/auth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/connector/sabre/auth.php b/lib/connector/sabre/auth.php index 0c34c7ea29f..db8f005745a 100644 --- a/lib/connector/sabre/auth.php +++ b/lib/connector/sabre/auth.php @@ -37,7 +37,7 @@ class OC_Connector_Sabre_Auth extends Sabre_DAV_Auth_Backend_AbstractBasic { } else { OC_Util::setUpFS();//login hooks may need early access to the filesystem if(OC_User::login($username, $password)) { - OC_Util::setUpFS($username); + OC_Util::setUpFS(OC_User::getUser()); return true; } else{ |