diff options
Diffstat (limited to 'framework/Collections')
-rw-r--r-- | framework/Collections/TStack.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Collections/TStack.php b/framework/Collections/TStack.php index de49031d..72ca2dd0 100644 --- a/framework/Collections/TStack.php +++ b/framework/Collections/TStack.php @@ -100,7 +100,7 @@ class TStack extends TComponent implements IteratorAggregate */
public function contains($item)
{
- return array_search($item,$this->_d,true))!==false;
+ return array_search($item,$this->_d,true)!==false;
}
/**
|