diff options
-rw-r--r-- | composer/ChangeLog | 7 | ||||
-rw-r--r-- | composer/e-composer-actions.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index 0e5a3dd328..315580b45c 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,10 @@ +2008-10-03 Milan Crha <mcrha@redhat.com> + + ** Fix for bug #554664 + + * e-composer-actions.c: (action_attach_cb): + Call attach_remote_file when knows the URI points to it. + 2008-10-01 Milan Crha <mcrha@redhat.com> ** Part of fix for bug #554418 diff --git a/composer/e-composer-actions.c b/composer/e-composer-actions.c index c88f7e301e..4a2f659c99 100644 --- a/composer/e-composer-actions.c +++ b/composer/e-composer-actions.c @@ -86,7 +86,7 @@ action_attach_cb (GtkAction *action, if (!g_ascii_strcasecmp (url->protocol, "file")) e_attachment_bar_attach (bar, url->path, disposition); else - e_attachment_bar_attach (bar, iter->data, disposition); + e_attachment_bar_attach_remote_file (bar, iter->data, disposition); camel_url_free (url); } |