From 569f8306db3f61831795f15793b1c8f749f94779 Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Fri, 15 Apr 2011 11:26:16 -0400
Subject: [PATCH] Fix vcard folding at 75 chars; don't fold vcards for internal storage

---
 program/include/rcube_contacts.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/program/include/rcube_contacts.php b/program/include/rcube_contacts.php
index 705551b..3c713fe 100644
--- a/program/include/rcube_contacts.php
+++ b/program/include/rcube_contacts.php
@@ -551,7 +551,7 @@
                     $words .= ' ' . self::normalize_string($value);
             }
         }
-        $out['vcard'] = $vcard->export();
+        $out['vcard'] = $vcard->export(false);
 
         foreach ($this->table_cols as $col) {
             $key = $col;

--
Gitblit v1.9.1