aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-config.c
diff options
context:
space:
mode:
authorJason Leach <jleach@ximian.com>2001-07-13 02:01:09 +0800
committerJacob Leach <jleach@src.gnome.org>2001-07-13 02:01:09 +0800
commit1bcf8899a0758f5d5e0bc7ccec105699cb073072 (patch)
treef543627a452486fe2ceafd2dde9ab8e661f6ed0f /mail/mail-config.c
parent469e9372d6a2a0b6f99f64a99c5a690ff0a6ec54 (diff)
downloadgsoc2013-evolution-1bcf8899a0758f5d5e0bc7ccec105699cb073072.tar
gsoc2013-evolution-1bcf8899a0758f5d5e0bc7ccec105699cb073072.tar.gz
gsoc2013-evolution-1bcf8899a0758f5d5e0bc7ccec105699cb073072.tar.bz2
gsoc2013-evolution-1bcf8899a0758f5d5e0bc7ccec105699cb073072.tar.lz
gsoc2013-evolution-1bcf8899a0758f5d5e0bc7ccec105699cb073072.tar.xz
gsoc2013-evolution-1bcf8899a0758f5d5e0bc7ccec105699cb073072.tar.zst
gsoc2013-evolution-1bcf8899a0758f5d5e0bc7ccec105699cb073072.zip
Should be saving the 'identity_html_signature' and
2001-07-12 Jason Leach <jleach@ximian.com> * mail-config.c (config_read): Should be saving the 'identity_html_signature' and 'identity_has_html_signature" keys in the /Mail/Accounts prefix (with the rest of the per-account stuff, not on it's own) svn path=/trunk/; revision=11051
Diffstat (limited to 'mail/mail-config.c')
-rw-r--r--mail/mail-config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/mail-config.c b/mail/mail-config.c
index 59679a532c..204ed35bd3 100644
--- a/mail/mail-config.c
+++ b/mail/mail-config.c
@@ -377,10 +377,10 @@ config_read (void)
path = g_strdup_printf ("/Mail/Accounts/identity_signature_%d", i);
id->signature = bonobo_config_get_string (config->db, path, NULL);
g_free (path);
- path = g_strdup_printf ("identity_html_signature_%d", i);
+ path = g_strdup_printf ("/Mail/Accounts/identity_html_signature_%d", i);
id->html_signature = bonobo_config_get_string (config->db, path, NULL);
g_free (path);
- path = g_strdup_printf ("identity_has_html_signature_%d", i);
+ path = g_strdup_printf ("/Mail/Accounts/identity_has_html_signature_%d", i);
id->has_html_signature = bonobo_config_get_boolean_with_default (
config->db, path, FALSE, NULL);
g_free (path);