summaryrefslogtreecommitdiff
path: root/framework/Collections/TAttributeCollection.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/Collections/TAttributeCollection.php')
-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 7abc8b43..d72640f2 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);
}
/**