diff options
author | Cosimo Cecchi <cosimoc@src.gnome.org> | 2008-01-11 04:40:35 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@src.gnome.org> | 2008-01-11 04:40:35 +0800 |
commit | f7d3936f5ec8297531b32d973a39750ed182809b (patch) | |
tree | f330ecdf7b34b06612d73c890aeba9c682b43b3b /src/ephy-activation.c | |
parent | 00a6ae4ccf4be271165755d6866211c708cc09f7 (diff) | |
download | gsoc2013-epiphany-f7d3936f5ec8297531b32d973a39750ed182809b.tar gsoc2013-epiphany-f7d3936f5ec8297531b32d973a39750ed182809b.tar.gz gsoc2013-epiphany-f7d3936f5ec8297531b32d973a39750ed182809b.tar.bz2 gsoc2013-epiphany-f7d3936f5ec8297531b32d973a39750ed182809b.tar.lz gsoc2013-epiphany-f7d3936f5ec8297531b32d973a39750ed182809b.tar.xz gsoc2013-epiphany-f7d3936f5ec8297531b32d973a39750ed182809b.tar.zst gsoc2013-epiphany-f7d3936f5ec8297531b32d973a39750ed182809b.zip |
Open externally opened link in current tab if it is blank.
Fix bug #499613.
svn path=/trunk/; revision=7856
Diffstat (limited to 'src/ephy-activation.c')
-rw-r--r-- | src/ephy-activation.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ephy-activation.c b/src/ephy-activation.c index f2346f0ca..efd54df8f 100644 --- a/src/ephy-activation.c +++ b/src/ephy-activation.c @@ -64,8 +64,12 @@ ephy_activation_load_uri_list (EphyDbus *ephy_dbus, guint startup_id, GError **error) { + char *new_options; + + new_options = g_strconcat (options, "external,", NULL); return session_queue_command (EPHY_SESSION_CMD_OPEN_URIS, - options, uris, startup_id, error); + new_options, uris, startup_id, error); + g_free (new_options); } gboolean |