commited stefan beckers patch for the replacement of rtf tags:avoid $$fields in RTF Dodument instead of emty values

This commit is contained in:
Klaus Leithoff 2008-06-05 14:39:06 +00:00
parent cdcf216712
commit a97d64d769

View File

@ -64,8 +64,9 @@ class addressbook_merge // extends bo_merge
if (!is_array($contact)) return array();
$replacements = array();
foreach($contact as $name => $value)
foreach(array_keys($this->contacts->contact_fields) as $name)
{
$value = $contact[$name];
switch($name)
{
case 'created': case 'modified':
@ -325,4 +326,4 @@ class addressbook_merge // extends bo_merge
$GLOBALS['egw']->common->egw_footer();
}
}
}