diff options
author | Chris Toshok <toshok@ximian.com> | 2003-01-24 05:19:51 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2003-01-24 05:19:51 +0800 |
commit | dc1ed8e7b61f55b2f3af4527a2d3c603e49ed88f (patch) | |
tree | f321ce8781e7679863ffbdd99147878ceda2998d | |
parent | 1fbf46701893fe9e6756838b7b288318caa8b3fd (diff) | |
download | gsoc2013-evolution-dc1ed8e7b61f55b2f3af4527a2d3c603e49ed88f.tar gsoc2013-evolution-dc1ed8e7b61f55b2f3af4527a2d3c603e49ed88f.tar.gz gsoc2013-evolution-dc1ed8e7b61f55b2f3af4527a2d3c603e49ed88f.tar.bz2 gsoc2013-evolution-dc1ed8e7b61f55b2f3af4527a2d3c603e49ed88f.tar.lz gsoc2013-evolution-dc1ed8e7b61f55b2f3af4527a2d3c603e49ed88f.tar.xz gsoc2013-evolution-dc1ed8e7b61f55b2f3af4527a2d3c603e49ed88f.tar.zst gsoc2013-evolution-dc1ed8e7b61f55b2f3af4527a2d3c603e49ed88f.zip |
[ fixes bug #31014, roll this in from the 1.2 branch ] use "categories"
2003-01-23 Chris Toshok <toshok@ximian.com>
[ fixes bug #31014, roll this in from the 1.2 branch ]
* backend/pas/pas-backend-ldap.c: use "categories" instead of
"category" for the ECard field so the UI/get_supported_fields stuff
actually thinks its usable in the contact editor..
svn path=/trunk/; revision=19599
-rw-r--r-- | addressbook/ChangeLog | 7 | ||||
-rw-r--r-- | addressbook/backend/pas/pas-backend-ldap.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 7eb77f55b6..ed3aa7e828 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,12 @@ 2003-01-23 Chris Toshok <toshok@ximian.com> + [ fixes bug #31014, roll this in from the 1.2 branch ] + * backend/pas/pas-backend-ldap.c: use "categories" instead of + "category" for the ECard field so the UI/get_supported_fields stuff + actually thinks its usable in the contact editor.. + +2003-01-23 Chris Toshok <toshok@ximian.com> + * backend/pas/pas-backend-ldap.c (pas_backend_ldap_connect): fix for bug 34883 broke ssl transactions (at least those where we were connecting to port 636). Move it to after the SSL stanza. diff --git a/addressbook/backend/pas/pas-backend-ldap.c b/addressbook/backend/pas/pas-backend-ldap.c index 93bbd6cbd4..218f308f1f 100644 --- a/addressbook/backend/pas/pas-backend-ldap.c +++ b/addressbook/backend/pas/pas-backend-ldap.c @@ -268,7 +268,7 @@ struct prop_info { E_STRING_PROP (E_CARD_SIMPLE_FIELD_MAILER, "mailer", "mailer"), E_STRING_PROP (E_CARD_SIMPLE_FIELD_FILE_AS, "file_as", "fileAs"), - E_COMPLEX_PROP (E_CARD_SIMPLE_FIELD_CATEGORIES, "category", "category", category_populate, category_ber, category_compare), + E_COMPLEX_PROP (E_CARD_SIMPLE_FIELD_CATEGORIES, "categories", "category", category_populate, category_ber, category_compare), STRING_PROP (E_CARD_SIMPLE_FIELD_CALURI, "caluri", "calCalURI"), STRING_PROP (E_CARD_SIMPLE_FIELD_FBURL, "fburl", "calFBURL"), |