Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2006-12-23 12:25:18 (GMT)
committer Carlos Garcia Campos <carlosgc@src.gnome.org>2006-12-23 12:25:18 (GMT)
commitf02b790d07d2dd16039fdec6fd75f04ba719fde0 (patch)
tree4b8155b98fd54c4e2d01da844c51ee7feee8a98b /shell
parent9f20012d6372450a60b93744367a3b718e7866c6 (diff)
Do not escape uri before calling gnome_vfs_url_show(). Fixes bug #378085.
2006-12-23 Carlos Garcia Campos <carlosgc@gnome.org> * shell/ev-window.c: (launch_external_uri): Do not escape uri before calling gnome_vfs_url_show(). Fixes bug #378085.
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-window.c9
1 files changed, 1 insertions, 8 deletions
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