summaryrefslogtreecommitdiff
path: root/framework/TComponent.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/TComponent.php')
-rw-r--r--framework/TComponent.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/framework/TComponent.php b/framework/TComponent.php
index 9af42a9a..54fe7ec7 100644
--- a/framework/TComponent.php
+++ b/framework/TComponent.php
@@ -515,9 +515,7 @@ class TPropertyValue
public static function ensureBoolean($value)
{
if (is_string($value))
- return strcasecmp($value,'true')==0 || strcasecmp($value,'1')==0 || $value!=0;
- if (is_int($value))
- return $value === 1;
+ return strcasecmp($value,'true')==0 || $value!=0;
else
return (boolean)$value;
}