From 1a0a80efe96779984c8347d0025679f752793f91 Mon Sep 17 00:00:00 2001 From: ctrlaltca <> Date: Tue, 22 Jan 2013 23:25:03 +0000 Subject: patched regression found by unit test --- framework/Collections/TAttributeCollection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } /** -- cgit v1.2.3