diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/mail-callbacks.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index aba2816df8..96f4b98a7b 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2001-08-10 Jeffrey Stedfast <fejj@ximian.com> + + * mail-callbacks.c (transfer_msg): Prepend the uri with evolution: + to fix bug #6916. + 2001-08-10 Jason Leach <jleach@ximian.com> * folder-browser.c: Make the context menu for the Sent folder have diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c index b78849663f..6ad6008ccf 100644 --- a/mail/mail-callbacks.c +++ b/mail/mail-callbacks.c @@ -999,7 +999,7 @@ transfer_msg (GtkWidget *widget, gpointer user_data, gboolean delete_from_source path = strchr (uri, '/'); if (path && strcmp (last, path) != 0) { g_free (last); - last = g_strdup (path); + last = g_strdup_printf ("evolution:%s", path); } g_free (uri); |