Fixed new checkstyle issues in ftp.php from build #1341.

This commit is contained in:
Diederik de Haas 2012-11-10 00:46:50 +01:00
parent 3cc6df489f
commit 6e6df6e410
1 changed files with 2 additions and 2 deletions

View File

@ -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'];