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

SVN:2.2.0[3874]
This commit is contained in:
Denis Flaven
2016-01-25 13:00:41 +00:00
parent f37b9a47d1
commit d5ae7722b7

View File

@@ -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;
}