Fixed isssue with final class recall, discovered when reintroducing the field Ticket::related_change_id

SVN:trunk[717]
This commit is contained in:
Romain Quetiez
2010-08-30 14:04:16 +00:00
parent ed1abec39d
commit 97f26c05e4

View File

@@ -745,6 +745,7 @@ class AttributeClass extends AttributeString
public function GetAsHTML($sValue)
{
if (empty($sValue)) return '';
return MetaModel::GetName($sValue);
}
@@ -822,6 +823,7 @@ class AttributeFinalClass extends AttributeString
public function GetAsHTML($sValue)
{
if (empty($sValue)) return '';
return MetaModel::GetName($sValue);
}
}