#1176: empty placeholders are represented by an empty string as in previous version.

SVN:trunk[3873]
This commit is contained in:
Denis Flaven
2016-01-25 12:46:56 +00:00
parent f53ce84f5d
commit 410c47178d

View File

@@ -2420,7 +2420,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;
}