2008-10-12 Carlos Garcia Campos <carlosgc@gnome.org>
* shell/ev-window.c: (launch_external_uri):
Do not consider mailto links as http uris. Fixes bug #555801.
svn path=/trunk/; revision=3218
+2008-10-12 Carlos Garcia Campos <carlosgc@gnome.org>
+
+ * shell/ev-window.c: (launch_external_uri):
+
+ Do not consider mailto links as http uris. Fixes bug #555801.
+
2008-10-06 Carlos Garcia Campos <carlosgc@gnome.org>
* shell/ev-view.c: (merge_selection_region), (clear_selection):
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 */