diff --git a/core/dbobject.class.php b/core/dbobject.class.php index 50df3469c..0731dcf98 100644 --- a/core/dbobject.class.php +++ b/core/dbobject.class.php @@ -2415,7 +2415,10 @@ abstract class DBObject implements iDisplay $oAttDef = MetaModel::GetAttributeDef(get_class($this), $sAttCode); $ret = $oAttDef->GetForTemplate($this->Get($sAttCode), $sVerb, $this); } - + if ($ret === null) + { + $ret = ''; + } } return $ret; }