]> spindle.queued.net Git - midori/commitdiff
Escape space in search pattern to match the history URL format
authorAlexander Butenko <a.butenka@gmail.com>
Tue, 20 Jul 2010 18:18:58 +0000 (14:18 -0400)
committerChristian Dywan <christian@twotoasts.de>
Wed, 21 Jul 2010 21:16:51 +0000 (23:16 +0200)
midori/sokoke.c

index 4f7e92d7d2b1df6cb6a2d635d1e0b96e7c1013a4..22093f125f2525b91e13f5733539f777db1790d9 100644 (file)
@@ -626,7 +626,7 @@ gchar* sokoke_search_uri (const gchar* uri,
     if (!uri)
         return g_strdup (keywords);
 
-    escaped = g_uri_escape_string (keywords, " :/", TRUE);
+    escaped = g_uri_escape_string (keywords, ":/", TRUE);
     if (strstr (uri, "%s"))
         search = g_strdup_printf (uri, escaped);
     else