aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--src/ephy-tab.c3
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index fb8fcd42d..9e6deeb81 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2004-01-12 Christian Persch <chpe@cvs.gnome.org>
+ * embed/mozilla/EventContext.h:
+ * src/ephy-tab.c: (address_has_web_scheme):
+
+ Forgot to commit those.
+
+2004-01-12 Christian Persch <chpe@cvs.gnome.org>
+
* embed/mozilla/ContentHandler.cpp:
* embed/mozilla/EventContext.cpp:
* embed/mozilla/EventContext.h:
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);
}