--- vcard.module	2008-01-26 21:48:31.000000000 +0100
+++ vcard.module	2008-06-04 07:47:53.000000000 +0200
@@ -193,9 +193,9 @@
     $vcard->setGeo($account->location['latitude'], $account->location['longitude']);
   }
 
-  header('Content-type: text/x-vcard');
+  header('Content-type: text/x-vcard; encoding="ISO-8859-1"');
   header('Content-Disposition: attachment; filename="'. $account->name .'.vcf"');
-  print $vcard->fetch();
+  print utf8_decode($vcard->fetch());
   exit;
 }
 
