From f02b790d07d2dd16039fdec6fd75f04ba719fde0 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Campos Date: Sat, 23 Dec 2006 12:25:18 +0000 Subject: 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. --- (limited to 'shell') diff --git a/shell/ev-window.c b/shell/ev-window.c index 9eac43f..ce956b9 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 -- cgit v0.9.1