** Fix for bug #554664

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.


svn path=/trunk/; revision=36549
This commit is contained in:
Milan Crha
2008-10-03 15:39:45 +00:00
committed by Milan Crha
parent cc2f6e0967
commit 676a02bcd1
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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);
}