diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-04-24 20:39:12 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-04-24 20:39:12 +0800 |
commit | dbf352aded24013b511267d19c82fa017846ea73 (patch) | |
tree | 1d0ddd37a115736d90541a1a8cffb90838a0024d /src/bookmarks | |
parent | 0321e0c109de8225a82868cb1dc8cfb5455a544f (diff) | |
download | gsoc2013-epiphany-dbf352aded24013b511267d19c82fa017846ea73.tar gsoc2013-epiphany-dbf352aded24013b511267d19c82fa017846ea73.tar.gz gsoc2013-epiphany-dbf352aded24013b511267d19c82fa017846ea73.tar.bz2 gsoc2013-epiphany-dbf352aded24013b511267d19c82fa017846ea73.tar.lz gsoc2013-epiphany-dbf352aded24013b511267d19c82fa017846ea73.tar.xz gsoc2013-epiphany-dbf352aded24013b511267d19c82fa017846ea73.tar.zst gsoc2013-epiphany-dbf352aded24013b511267d19c82fa017846ea73.zip |
Replaces all %s in smartbookmarks. Fixes bug #167319, patch by Raphael
2005-04-24 Christian Persch <chpe@cvs.gnome.org>
* src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_solve_smart_url):
Replaces all %s in smartbookmarks. Fixes bug #167319, patch by
Raphael Slinckx.
Diffstat (limited to 'src/bookmarks')
-rw-r--r-- | src/bookmarks/ephy-bookmarks.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/bookmarks/ephy-bookmarks.c b/src/bookmarks/ephy-bookmarks.c index 9129181e2..25045438d 100644 --- a/src/bookmarks/ephy-bookmarks.c +++ b/src/bookmarks/ephy-bookmarks.c @@ -1238,11 +1238,13 @@ ephy_bookmarks_solve_smart_url (EphyBookmarks *eb, escaped_arg = gnome_vfs_escape_string (arg); t1 = smarturl_only; - t2 = strstr (t1, "%s"); - g_return_val_if_fail (t2 != NULL, NULL); - g_string_append_len (s, t1, t2 - t1); - g_string_append (s, escaped_arg); - t1 = t2 + 2; + while ((t2 = strstr (t1, "%s")) != NULL) + { + g_string_append_len (s, t1, t2 - t1); + g_string_append (s, escaped_arg); + t1 = t2 + 2; + } + g_string_append (s, t1); ret = g_string_free (s, FALSE); |