aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/backend
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-08-23 17:34:53 +0800
committerChris Lahey <clahey@src.gnome.org>2000-08-23 17:34:53 +0800
commitfd1851ec7a26dcce5d909eefde060bee7c643925 (patch)
tree9c4f8f93b25d8ada399e465d68aa5f781369f212 /addressbook/backend
parentef435ebae5066a28bee26c14fdfed91a9a7a7cc7 (diff)
downloadgsoc2013-evolution-fd1851ec7a26dcce5d909eefde060bee7c643925.tar
gsoc2013-evolution-fd1851ec7a26dcce5d909eefde060bee7c643925.tar.gz
gsoc2013-evolution-fd1851ec7a26dcce5d909eefde060bee7c643925.tar.bz2
gsoc2013-evolution-fd1851ec7a26dcce5d909eefde060bee7c643925.tar.lz
gsoc2013-evolution-fd1851ec7a26dcce5d909eefde060bee7c643925.tar.xz
gsoc2013-evolution-fd1851ec7a26dcce5d909eefde060bee7c643925.tar.zst
gsoc2013-evolution-fd1851ec7a26dcce5d909eefde060bee7c643925.zip
Fix this to not mess up if the person passes a VCard with a carriage
2000-08-22 Christopher James Lahey <clahey@helixcode.com> * backend/ebook/e-card.c: Fix this to not mess up if the person passes a VCard with a carriage return in the mailing address. * gui/search/e-addressbook-search-dialog.c: Fix an error in the arguments to rule_context_load. svn path=/trunk/; revision=4983
Diffstat (limited to 'addressbook/backend')
-rw-r--r--addressbook/backend/ebook/e-card.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/addressbook/backend/ebook/e-card.c b/addressbook/backend/ebook/e-card.c
index a81544dcd3..be18e1c359 100644
--- a/addressbook/backend/ebook/e-card.c
+++ b/addressbook/backend/ebook/e-card.c
@@ -295,6 +295,7 @@ char
addPropValue(addressprop, VCPostalCodeProp, address->code);
if ( address->country )
addPropValue(addressprop, VCCountryNameProp, address->country);
+ addProp(addressprop, VCQuotedPrintableProp);
}
gtk_object_unref(GTK_OBJECT(iterator));
}