diff options
author | Radek Doulik <rodo@src.gnome.org> | 2002-11-20 02:42:41 +0800 |
---|---|---|
committer | Radek Doulik <rodo@src.gnome.org> | 2002-11-20 02:42:41 +0800 |
commit | ccbfa5da0395e08ce672a0546c513cf970c29fb6 (patch) | |
tree | df2ad305f7ef54ecf568468ce754b1ce69f2d5ab /composer | |
parent | 3a49f0dd089a4a9fc1dd199a3f1e843e514afb8a (diff) | |
download | gsoc2013-evolution-ccbfa5da0395e08ce672a0546c513cf970c29fb6.tar.gz gsoc2013-evolution-ccbfa5da0395e08ce672a0546c513cf970c29fb6.tar.zst gsoc2013-evolution-ccbfa5da0395e08ce672a0546c513cf970c29fb6.zip |
applied plain_signature_fix.patch
svn path=/trunk/; revision=18841
Diffstat (limited to 'composer')
-rw-r--r-- | composer/ChangeLog | 5 | ||||
-rw-r--r-- | composer/e-msg-composer.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index 53ad7cf34b..459eeadcf4 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,8 @@ +2002-11-19 Radek Doulik <rodo@ximian.com> + + * e-msg-composer.c (e_msg_composer_get_sig_file_content): use + CAMEL_MIME_FILTER_TOHTML_PRESERVE_8BIT flag + 2002-11-19 Not Zed <NotZed@Ximian.com> * e-msg-composer-attachment-bar.c (add_from_file): dont unref diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index ee8887a140..3df26f5449 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -851,7 +851,7 @@ e_msg_composer_get_sig_file_content (const char *sigfile, gboolean in_html) return NULL; } - return get_file_content (NULL, sigfile, !in_html, 0, FALSE); + return get_file_content (NULL, sigfile, !in_html, CAMEL_MIME_FILTER_TOHTML_PRESERVE_8BIT, FALSE); } static void |