diff options
| -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);  	}  	/** | 
