]> spindle.queued.net Git - midori/commitdiff
Replace variables in templates literally
authorChristian Dywan <christian@twotoasts.de>
Sun, 10 May 2009 14:20:50 +0000 (16:20 +0200)
committerChristian Dywan <christian@twotoasts.de>
Sun, 10 May 2009 14:20:50 +0000 (16:20 +0200)
midori/sokoke.c

index 8e9c84b24db6c09689ed2cb77eaaa9e9cc9c6bca..59d88e05b0f5e3d072a56248ad7d6fa2cab24ebd 100644 (file)
@@ -1057,7 +1057,7 @@ sokoke_replace_variables (const gchar* template,
         const gchar* value = va_arg (args, const gchar*);
         GRegex* regex = g_regex_new (variable, 0, 0, NULL);
         gchar* replaced = result;
-        result = g_regex_replace (regex, replaced, -1, 0, value, 0, NULL);
+        result = g_regex_replace_literal (regex, replaced, -1, 0, value, 0, NULL);
         g_free (replaced);
         g_regex_unref (regex);
     }