diff options
author | Diego Escalante Urrelo <diegoe@igalia.com> | 2012-01-23 23:40:46 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@igalia.com> | 2012-01-24 00:25:35 +0800 |
commit | 0e7ecc4b8f43ac53c3c1ab7a1281a4a959f86c5c (patch) | |
tree | 9ab1375542554dacf11c749e6b36fccbbe161b8c /embed/ephy-embed-utils.c | |
parent | 0257e7153ecbe593a0b13cca3ec90f9db03705e7 (diff) | |
download | gsoc2013-epiphany-0e7ecc4b8f43ac53c3c1ab7a1281a4a959f86c5c.tar.gz gsoc2013-epiphany-0e7ecc4b8f43ac53c3c1ab7a1281a4a959f86c5c.tar.zst gsoc2013-epiphany-0e7ecc4b8f43ac53c3c1ab7a1281a4a959f86c5c.zip |
ephy-embed-utils: mailto is not a web scheme
https://bugzilla.gnome.org/show_bug.cgi?id=551857
Diffstat (limited to 'embed/ephy-embed-utils.c')
-rw-r--r-- | embed/ephy-embed-utils.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/embed/ephy-embed-utils.c b/embed/ephy-embed-utils.c index 2bf0e1f11..5865b5843 100644 --- a/embed/ephy-embed-utils.c +++ b/embed/ephy-embed-utils.c @@ -97,8 +97,7 @@ ephy_embed_utils_address_has_web_scheme (const char *address) g_ascii_strncasecmp (address, "javascript", colonpos) && g_ascii_strncasecmp (address, "data", colonpos) && g_ascii_strncasecmp (address, "about", colonpos) && - g_ascii_strncasecmp (address, "gopher", colonpos) && - g_ascii_strncasecmp (address, "mailto", colonpos)); + g_ascii_strncasecmp (address, "gopher", colonpos)); return has_web_scheme; } |