diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-tab.c | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -1,5 +1,11 @@ 2003-07-23 Marco Pesenti Gritti <marco@it.gnome.org> + * src/ephy-tab.c: (open_link_in_new_tab): + + Add https + +2003-07-23 Marco Pesenti Gritti <marco@it.gnome.org> + * data/ui/epiphany-bookmark-editor-ui.xml.in: * help/nl/epiphany-nl.omf: diff --git a/src/ephy-tab.c b/src/ephy-tab.c index 69a881007..a84c0ce4f 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -890,6 +890,7 @@ open_link_in_new_tab (EphyTab *tab, scheme = gnome_vfs_uri_get_scheme (uri); new_tab = (strcmp (scheme, "http") == 0 || + strcmp (scheme, "https") == 0 || strcmp (scheme, "ftp") == 0 || strcmp (scheme, "file") == 0); |