summaryrefslogtreecommitdiff
path: root/framework/Collections
diff options
context:
space:
mode:
authorxue <>2006-03-15 04:33:28 +0000
committerxue <>2006-03-15 04:33:28 +0000
commit1686a887483345667dc9ba4f50b69034a18604a8 (patch)
tree877e8a6d28c8407103412c8ba784f8b056e3c8fe /framework/Collections
parent2fc55480271a1bb35b6cd2d73829bfbd4f843b1c (diff)
Fixed a typo in TStack.
Diffstat (limited to 'framework/Collections')
-rw-r--r--framework/Collections/TStack.php2
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;
}
/**