diff options
author | xue <> | 2006-03-15 04:33:28 +0000 |
---|---|---|
committer | xue <> | 2006-03-15 04:33:28 +0000 |
commit | 1686a887483345667dc9ba4f50b69034a18604a8 (patch) | |
tree | 877e8a6d28c8407103412c8ba784f8b056e3c8fe | |
parent | 2fc55480271a1bb35b6cd2d73829bfbd4f843b1c (diff) |
Fixed a typo in TStack.
-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;
}
/**
|