diff options
-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 */ |