exclude field "info_link" for merge which contains an array and cannot be handled this way by bo_merge

This commit is contained in:
Christian Binder 2011-02-07 10:44:08 +00:00
parent 23645c7b9f
commit 509306fcf8

View File

@ -101,6 +101,7 @@ class infolog_merge extends bo_merge
// Add markers
foreach($array as $key => &$value)
{
if($key == 'info_link') continue; // not used for merge
if(!$value) $value = '';
$info['$$'.($prefix ? $prefix.'/':'').$key.'$$'] = $value;
}