From 6e6df6e410316b4df61237c862000492139eee3e Mon Sep 17 00:00:00 2001 From: Diederik de Haas Date: Sat, 10 Nov 2012 00:46:50 +0100 Subject: [PATCH] Fixed new checkstyle issues in ftp.php from build #1341. --- apps/files_external/lib/ftp.php | 4 ++-- 1 file 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'];