From 19318973ca168c31bafcd618a9925a25e0225016 Mon Sep 17 00:00:00 2001 From: Romain Quetiez Date: Mon, 19 Sep 2011 11:44:04 +0000 Subject: [PATCH] Fixed warning (strict standards) on previous fix SVN:trunk[1584] --- core/attributedef.class.inc.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/attributedef.class.inc.php b/core/attributedef.class.inc.php index 09cbd54352..edd9ac9680 100644 --- a/core/attributedef.class.inc.php +++ b/core/attributedef.class.inc.php @@ -2729,19 +2729,19 @@ class AttributeExternalField extends AttributeDefinition } } - public function GetLabel() + public function GetLabel($sDefault = '') { $oRemoteAtt = $this->GetExtAttDef(); $sDefault = $oRemoteAtt->GetLabel(); return parent::GetLabel($sDefault); } - public function GetDescription() + public function GetDescription($sDefault = '') { $oRemoteAtt = $this->GetExtAttDef(); $sDefault = $oRemoteAtt->GetDescription(); return parent::GetDescription($sDefault); } - public function GetHelpOnEdition() + public function GetHelpOnEdition($sDefault = '') { $oRemoteAtt = $this->GetExtAttDef(); $sDefault = $oRemoteAtt->GetHelpOnEdition();