From f2eb539ec8bb00860c34dfb4380879eeff8bab09 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Campos Date: Sun, 12 Oct 2008 12:06:24 +0000 Subject: Do not consider mailto links as http uris. Fixes bug #555801. 2008-10-12 Carlos Garcia Campos * shell/ev-window.c: (launch_external_uri): Do not consider mailto links as http uris. Fixes bug #555801. svn path=/trunk/; revision=3218 --- (limited to 'shell') diff --git a/shell/ev-window.c b/shell/ev-window.c index 44a68c6..0b2fd18 100644 --- a/shell/ev-window.c +++ b/shell/ev-window.c @@ -4902,7 +4902,8 @@ launch_external_uri (EvWindow *window, EvLinkAction *action) GDK_CURRENT_TIME); #endif - if (!g_strstr_len (uri, strlen (uri), "://")) { + if (!g_strstr_len (uri, strlen (uri), "://") && + !g_str_has_prefix (uri, "mailto:")) { gchar *http; /* Not a valid uri, assuming it's http */ -- cgit v0.9.1