diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-07-23 19:48:47 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-07-23 19:48:47 +0800 |
commit | e7c8c9136dc532c8269850a72b2f170a091f6c81 (patch) | |
tree | 95107fda655180c50d81d3e488a190bab5cf2f53 /src | |
parent | 4e5c3fde1f755e8868145f5262fde874112cb0c4 (diff) | |
download | gsoc2013-epiphany-e7c8c9136dc532c8269850a72b2f170a091f6c81.tar gsoc2013-epiphany-e7c8c9136dc532c8269850a72b2f170a091f6c81.tar.gz gsoc2013-epiphany-e7c8c9136dc532c8269850a72b2f170a091f6c81.tar.bz2 gsoc2013-epiphany-e7c8c9136dc532c8269850a72b2f170a091f6c81.tar.lz gsoc2013-epiphany-e7c8c9136dc532c8269850a72b2f170a091f6c81.tar.xz gsoc2013-epiphany-e7c8c9136dc532c8269850a72b2f170a091f6c81.tar.zst gsoc2013-epiphany-e7c8c9136dc532c8269850a72b2f170a091f6c81.zip |
Add https
2003-07-23 Marco Pesenti Gritti <marco@it.gnome.org>
* src/ephy-tab.c: (open_link_in_new_tab):
Add https
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-tab.c | 1 |
1 files changed, 1 insertions, 0 deletions
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); |