mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-19 15:22:17 +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();
|
$oRemoteAtt = $this->GetExtAttDef();
|
||||||
$sDefault = $oRemoteAtt->GetLabel();
|
$sDefault = $oRemoteAtt->GetLabel();
|
||||||
return parent::GetLabel($sDefault);
|
return parent::GetLabel($sDefault);
|
||||||
}
|
}
|
||||||
public function GetDescription()
|
public function GetDescription($sDefault = '')
|
||||||
{
|
{
|
||||||
$oRemoteAtt = $this->GetExtAttDef();
|
$oRemoteAtt = $this->GetExtAttDef();
|
||||||
$sDefault = $oRemoteAtt->GetDescription();
|
$sDefault = $oRemoteAtt->GetDescription();
|
||||||
return parent::GetDescription($sDefault);
|
return parent::GetDescription($sDefault);
|
||||||
}
|
}
|
||||||
public function GetHelpOnEdition()
|
public function GetHelpOnEdition($sDefault = '')
|
||||||
{
|
{
|
||||||
$oRemoteAtt = $this->GetExtAttDef();
|
$oRemoteAtt = $this->GetExtAttDef();
|
||||||
$sDefault = $oRemoteAtt->GetHelpOnEdition();
|
$sDefault = $oRemoteAtt->GetHelpOnEdition();
|
||||||
|
|||||||
Reference in New Issue
Block a user