From a6247a6191888e661ce41bb7026afd4b756a7f58 Mon Sep 17 00:00:00 2001 From: Miles Lott Date: Sun, 19 Oct 2003 07:48:12 +0000 Subject: [PATCH] This is the fix for performing strtolower on fields such as givenName from Mozilla --- addressbook/inc/class.boXport.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/addressbook/inc/class.boXport.inc.php b/addressbook/inc/class.boXport.inc.php index 3da6195c7e..6a11595fab 100644 --- a/addressbook/inc/class.boXport.inc.php +++ b/addressbook/inc/class.boXport.inc.php @@ -165,8 +165,9 @@ { while($data = fgets($fp,8000)) { - $url = ""; + $url = ''; list($name,$value,$extra) = split(':', $data); + $name = strtolower($name); if(substr($name,0,2) == 'dn') { $buffer = $contacts->import_start_record($buffer);