mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-18 06:48:50 +02:00
Fixed warning (strict standards) on previous fix
SVN:trunk[1584]
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user