diff options
author | Diederik de Haas <diederik@cknow.org> | 2012-11-10 00:46:50 +0100 |
---|---|---|
committer | Diederik de Haas <diederik@cknow.org> | 2012-11-10 00:46:50 +0100 |
commit | 6e6df6e410316b4df61237c862000492139eee3e (patch) | |
tree | a583c2f35a89f323c18c1abf65b2f6a35a077035 /apps/files_external/lib | |
parent | 3cc6df489f8e58d59b906270d03a82e0ceb353cf (diff) | |
download | nextcloud-server-6e6df6e410316b4df61237c862000492139eee3e.tar.gz nextcloud-server-6e6df6e410316b4df61237c862000492139eee3e.zip |
Fixed new checkstyle issues in ftp.php from build #1341.
Diffstat (limited to 'apps/files_external/lib')
-rw-r--r-- | apps/files_external/lib/ftp.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/lib/ftp.php b/apps/files_external/lib/ftp.php index 650ca88fd93..5b90e3049b7 100644 --- a/apps/files_external/lib/ftp.php +++ b/apps/files_external/lib/ftp.php @@ -19,8 +19,8 @@ class OC_FileStorage_FTP extends OC_FileStorage_StreamWrapper{ $this->host=$params['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']; |