diff options
author | emkael <emkael@tlen.pl> | 2016-11-03 23:22:40 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-11-03 23:22:40 +0100 |
commit | bef5754e4676a8a578550b6af24d050a946405eb (patch) | |
tree | 190a54af236d00c476b28799ba502a42205a95c5 /app/frontend/components | |
parent | 94e03b260197122ae8f6d7dfedfb2a191fdae273 (diff) |
* more strict function definitions
Diffstat (limited to 'app/frontend/components')
-rw-r--r-- | app/frontend/components/FileUploadSecureOption.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/frontend/components/FileUploadSecureOption.php b/app/frontend/components/FileUploadSecureOption.php index 3550e21..ae79720 100644 --- a/app/frontend/components/FileUploadSecureOption.php +++ b/app/frontend/components/FileUploadSecureOption.php @@ -9,7 +9,7 @@ trait FileUploadSecureOption { } public function setIsSecure($bool) { - $this->_isSecure = $bool; + $this->_isSecure = TPropertyValue::ensureBoolean($bool); } } |