From b1a199ae369289da948996d47eefcb83f6d6fa20 Mon Sep 17 00:00:00 2001 From: Miles Lott Date: Mon, 12 Mar 2001 01:33:36 +0000 Subject: [PATCH] Alter order of $street and $address2 as address fields --- addressbook/vcardout.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addressbook/vcardout.php b/addressbook/vcardout.php index 1f0b211280..2e68504829 100644 --- a/addressbook/vcardout.php +++ b/addressbook/vcardout.php @@ -112,8 +112,8 @@ $city != "" || /* City */ $state != "" || /* State */ $zip != "") /* Zip */ - printf("ADR:;%s;%s;%s;%s;%s;%s\r\n", $address2, - $street,$city,$state,$zip,$country); + printf("ADR:;;%s;%s;%s;%s;%s;%s\r\n", $street, + $address2,$city,$state,$zip,$country); if($bday != "" && $bday != "//") /* Birthday */ printf("BDAY:%s\r\n", $bday); /* This is not the right format. */