From: Carlos Garcia Campos Date: Sat, 23 Dec 2006 12:25:18 +0000 (+0000) Subject: Do not escape uri before calling gnome_vfs_url_show(). Fixes bug #378085. X-Git-Tag: EVINCE_0_7_1~48 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=f02b790d07d2dd16039fdec6fd75f04ba719fde0;p=evince.git Do not escape uri before calling gnome_vfs_url_show(). Fixes bug #378085. 2006-12-23 Carlos Garcia Campos * shell/ev-window.c: (launch_external_uri): Do not escape uri before calling gnome_vfs_url_show(). Fixes bug #378085. --- diff --git a/ChangeLog b/ChangeLog index 9749cea4..f4f99533 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-12-23 Carlos Garcia Campos + + * shell/ev-window.c: (launch_external_uri): + + Do not escape uri before calling gnome_vfs_url_show(). Fixes bug + #378085. + 2006-12-22 Elijah Newren * configure.ac: explicitly check for libxml2. Fixes #388795 diff --git a/shell/ev-window.c b/shell/ev-window.c index 9eac43f9..ce956b97 100644 --- a/shell/ev-window.c +++ b/shell/ev-window.c @@ -4148,14 +4148,7 @@ launch_action (EvWindow *window, EvLinkAction *action) static void launch_external_uri (EvWindow *window, EvLinkAction *action) { - const char *uri; - char *escaped; - - uri = ev_link_action_get_uri (action); - escaped = gnome_vfs_escape_host_and_path_string (uri); - - gnome_vfs_url_show (escaped); - g_free (escaped); + gnome_vfs_url_show (ev_link_action_get_uri (action)); } static void