summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorctrlaltca <>2013-01-22 23:25:03 +0000
committerctrlaltca <>2013-01-22 23:25:03 +0000
commit1a0a80efe96779984c8347d0025679f752793f91 (patch)
tree9d40ca85fdcc7fe2609b830e72b2e776bde1ee8e
parentb97ece103198be2ff3dc1a259588fb849266534b (diff)
patched regression found by unit test
-rw-r--r--framework/Collections/TAttributeCollection.php2
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);
}
/**