Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
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
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.
-rw-r--r--ChangeLog7
-rw-r--r--shell/ev-window.c9
2 files changed, 8 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 9749cea..f4f9953 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+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.
+
2006-12-22 Elijah Newren <newren gmail com>
* configure.ac: explicitly check for libxml2. Fixes #388795
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