From d8c20ad55a9a0b5b0b310020d599af667792d94c Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Wed, 29 Jan 2014 21:32:54 +0100 Subject: Avoid dependency loop between TRadioButton and TRadioButtonList --- framework/Web/UI/WebControls/TRadioButton.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'framework/Web/UI') diff --git a/framework/Web/UI/WebControls/TRadioButton.php b/framework/Web/UI/WebControls/TRadioButton.php index d00f26b0..cd3d8480 100644 --- a/framework/Web/UI/WebControls/TRadioButton.php +++ b/framework/Web/UI/WebControls/TRadioButton.php @@ -13,10 +13,6 @@ * Using TCheckBox parent class */ Prado::using('System.Web.UI.WebControls.TCheckBox'); -/** - * Using TRadioButtonList class - */ -Prado::using('System.Web.UI.WebControls.TRadioButtonList'); /** * TRadioButton class @@ -170,7 +166,7 @@ class TRadioButton extends TCheckBox { if($groupName!=='') $groupName=substr($uniqueID,0,$pos+1).$groupName; - else if($this->getNamingContainer() instanceof TRadioButtonList) + else if(is_a($this->getNamingContainer(), 'TRadioButtonList')) $groupName=substr($uniqueID,0,$pos); } if($groupName==='') -- cgit v1.2.3