diff options
author | Not Zed <NotZed@Ximian.com> | 2004-04-23 14:04:14 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-04-23 14:04:14 +0800 |
commit | 455fad8262cc3695f61d19d5f54e0a070a990afd (patch) | |
tree | 17c5bb7175e0aa54c5c8d6f2785ec2b320059530 /mail | |
parent | d32e4fd988dd80c75409793a25bdf4f13706ff4f (diff) | |
download | gsoc2013-evolution-455fad8262cc3695f61d19d5f54e0a070a990afd.tar.gz gsoc2013-evolution-455fad8262cc3695f61d19d5f54e0a070a990afd.tar.zst gsoc2013-evolution-455fad8262cc3695f61d19d5f54e0a070a990afd.zip |
fix the check to see if we've already loaded the images. #57450.
2004-04-23 Not Zed <NotZed@Ximian.com>
* em-format-html.c (em_format_html_load_http): fix the check to
see if we've already loaded the images. #57450.
svn path=/trunk/; revision=25594
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/em-format-html.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 0cc9d67efb..393e0a011c 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2004-04-23 Not Zed <NotZed@Ximian.com> + + * em-format-html.c (em_format_html_load_http): fix the check to + see if we've already loaded the images. #57450. + 2004-04-23 Sarfraaz Ahmed <asarfraaz@novell.com> * mail-account-gui.c (mail_account_gui_source_complete): Added a diff --git a/mail/em-format-html.c b/mail/em-format-html.c index 53a933f783..a7ccb59dee 100644 --- a/mail/em-format-html.c +++ b/mail/em-format-html.c @@ -254,7 +254,7 @@ EMFormatHTML *em_format_html_new(void) /* force loading of http images */ void em_format_html_load_http(EMFormatHTML *emfh) { - if (emfh->load_http) + if (emfh->load_http == MAIL_CONFIG_HTTP_ALWAYS) return; /* This will remain set while we're still rendering the same message, then it wont be */ |