Parser ajustments

This commit is contained in:
Jörg Lehrke 2009-07-20 17:41:15 +00:00
parent 2efaf05803
commit e5ee24dcfc

View File

@ -1280,7 +1280,10 @@ class addressbook_vcal extends addressbook_bo
$finalRowNames['X-ASSISTANT'] = $vcardKey;
break;
default:
$finalRowNames[$rowName] = $vcardKey;
if (!isset($finalRowNames[$rowName]))
{
$finalRowNames[$rowName] = $vcardKey;
}
break;
}
}