aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ephy-tab.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ephy-tab.c b/src/ephy-tab.c
index 6bfb97f48..cecaa2a7a 100644
--- a/src/ephy-tab.c
+++ b/src/ephy-tab.c
@@ -411,7 +411,8 @@ address_has_web_scheme (const char *address)
has_web_scheme = (strcmp (scheme, "http") == 0 ||
strcmp (scheme, "https") == 0 ||
strcmp (scheme, "ftp") == 0 ||
- strcmp (scheme, "file") == 0);
+ strcmp (scheme, "file") == 0 ||
+ strcmp (scheme, "gopher") == 0);
gnome_vfs_uri_unref (uri);
}