From 38de5e9f10bcf9c01b8b0368e62817de4eab44d4 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') diff --git a/framework/Web/UI/WebControls/TRadioButton.php b/framework/Web/UI/WebControls/TRadioButton.php index 5dd7f767..bb12a2ff 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 @@ -180,7 +176,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