From e5ee24dcfcd73eb5f0ab086068186cad07f518cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Lehrke?= Date: Mon, 20 Jul 2009 17:41:15 +0000 Subject: [PATCH] Parser ajustments --- addressbook/inc/class.addressbook_vcal.inc.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/addressbook/inc/class.addressbook_vcal.inc.php b/addressbook/inc/class.addressbook_vcal.inc.php index 2f3d9b7b94..f5fb8d6383 100644 --- a/addressbook/inc/class.addressbook_vcal.inc.php +++ b/addressbook/inc/class.addressbook_vcal.inc.php @@ -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; } }