mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 02:28:44 +02:00
Merge fix on previous change (fixed #473, but getting a warning)
SVN:1.2[1585]
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