diff options
author | ctrlaltca <> | 2013-01-22 23:25:03 +0000 |
---|---|---|
committer | ctrlaltca <> | 2013-01-22 23:25:03 +0000 |
commit | 1a0a80efe96779984c8347d0025679f752793f91 (patch) | |
tree | 9d40ca85fdcc7fe2609b830e72b2e776bde1ee8e /framework/Collections/TAttributeCollection.php | |
parent | b97ece103198be2ff3dc1a259588fb849266534b (diff) |
patched regression found by unit test
Diffstat (limited to 'framework/Collections/TAttributeCollection.php')
-rw-r--r-- | framework/Collections/TAttributeCollection.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Collections/TAttributeCollection.php b/framework/Collections/TAttributeCollection.php index 937c9441..fcec52bb 100644 --- a/framework/Collections/TAttributeCollection.php +++ b/framework/Collections/TAttributeCollection.php @@ -142,7 +142,7 @@ class TAttributeCollection extends TMap */ public function hasProperty($name) { - return $this->contains($name) || parent::hasProperty($name); + return $this->contains($name) || parent::canGetProperty($name) || parent::canSetProperty($name); } /** |