diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2012-09-10 12:29:35 +0300 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2012-09-10 12:29:35 +0300 |
commit | 1a10955644b6b56431679f64a7756fe99090f837 (patch) | |
tree | 743c90b820974d2dece4f80738de94c708d9add6 /lib/connector/sabre | |
parent | 2271a9799282b5dde00a49a291b0f5f11de0358e (diff) | |
download | nextcloud-server-1a10955644b6b56431679f64a7756fe99090f837.tar.gz nextcloud-server-1a10955644b6b56431679f64a7756fe99090f837.zip |
Respect coding style
Diffstat (limited to 'lib/connector/sabre')
-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 34fc5fee50c..0c34c7ea29f 100644 --- a/lib/connector/sabre/auth.php +++ b/lib/connector/sabre/auth.php @@ -36,7 +36,7 @@ class OC_Connector_Sabre_Auth extends Sabre_DAV_Auth_Backend_AbstractBasic { return true; } else { OC_Util::setUpFS();//login hooks may need early access to the filesystem - if(OC_User::login($username,$password)) { + if(OC_User::login($username, $password)) { OC_Util::setUpFS($username); return true; } |