diff options
author | Felix Moeller <mail@felixmoeller.de> | 2012-10-23 08:35:54 +0200 |
---|---|---|
committer | Felix Moeller <mail@felixmoeller.de> | 2012-10-23 08:35:54 +0200 |
commit | 36d0d7590134f5587ab09c67927c3187e8b5c790 (patch) | |
tree | 4435e0aeff5ad380c67b7725264b8bb3da739f05 /apps/user_webdavauth | |
parent | ff5f9370c4a004f48cc036eb437a58cefb29962d (diff) | |
download | nextcloud-server-36d0d7590134f5587ab09c67927c3187e8b5c790.tar.gz nextcloud-server-36d0d7590134f5587ab09c67927c3187e8b5c790.zip |
Codestyle: FunctionCallArgumentSpacing
Diffstat (limited to 'apps/user_webdavauth')
-rwxr-xr-x | apps/user_webdavauth/user_webdavauth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_webdavauth/user_webdavauth.php b/apps/user_webdavauth/user_webdavauth.php index c36d37c1fa2..bd9f45d357b 100755 --- a/apps/user_webdavauth/user_webdavauth.php +++ b/apps/user_webdavauth/user_webdavauth.php @@ -51,7 +51,7 @@ class OC_USER_WEBDAVAUTH extends OC_User_Backend { $url= 'http://'.urlencode($uid).':'.urlencode($password).'@'.$this->webdavauth_url; $headers = get_headers($url); if($headers==false) { - OC_Log::write('OC_USER_WEBDAVAUTH', 'Not possible to connect to WebDAV Url: "'.$this->webdavauth_url.'" ' ,3); + OC_Log::write('OC_USER_WEBDAVAUTH', 'Not possible to connect to WebDAV Url: "'.$this->webdavauth_url.'" ', 3); return false; } |