summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDiederik de Haas <diederik@cknow.org>2012-11-10 00:40:32 +0100
committerDiederik de Haas <diederik@cknow.org>2012-11-10 00:40:32 +0100
commit051635412d68af786026a386a0ebf494127247c7 (patch)
tree2df8e923bfb587b19cfa047091a06b8bbb10b2e1 /apps
parent7ec0efe5c23d5e9fa63c62dae158fc93b3682289 (diff)
downloadnextcloud-server-051635412d68af786026a386a0ebf494127247c7.tar.gz
nextcloud-server-051635412d68af786026a386a0ebf494127247c7.zip
Fixed new checkstyle issues from build #1341.
Diffstat (limited to 'apps')
-rw-r--r--apps/files_external/lib/webdav.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php
index ec942b11f6a..25b328ea2d0 100644
--- a/apps/files_external/lib/webdav.php
+++ b/apps/files_external/lib/webdav.php
@@ -27,8 +27,8 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{
$this->host=$host;
$this->user=$params['user'];
$this->password=$params['password'];
- if(isset($params['secure'])){
- if(is_string($params['secure'])){
+ if(isset($params['secure'])) {
+ if(is_string($params['secure'])) {
$this->secure = ($params['secure'] === 'true');
}else{
$this->secure = (bool)$params['secure'];