aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-10-02 20:39:25 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-10-02 20:40:05 +0800
commitfb8e6a1fe35fae64089f704475edd4295463e9b7 (patch)
tree009a25909020fc0f3e76d9b17d3b5e10335adb81
parentef595899e2192608d0d5949136f9ab5987dcec89 (diff)
downloadgsoc2013-evolution-fb8e6a1fe35fae64089f704475edd4295463e9b7.tar
gsoc2013-evolution-fb8e6a1fe35fae64089f704475edd4295463e9b7.tar.gz
gsoc2013-evolution-fb8e6a1fe35fae64089f704475edd4295463e9b7.tar.bz2
gsoc2013-evolution-fb8e6a1fe35fae64089f704475edd4295463e9b7.tar.lz
gsoc2013-evolution-fb8e6a1fe35fae64089f704475edd4295463e9b7.tar.xz
gsoc2013-evolution-fb8e6a1fe35fae64089f704475edd4295463e9b7.tar.zst
gsoc2013-evolution-fb8e6a1fe35fae64089f704475edd4295463e9b7.zip
Bug 597108 - E_CONFIG_SECTION headers not properly escaped
-rw-r--r--e-util/e-config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-config.c b/e-util/e-config.c
index 412c00b649..b9a284b941 100644
--- a/e-util/e-config.c
+++ b/e-util/e-config.c
@@ -662,7 +662,7 @@ ec_rebuild(EConfig *emp)
}
if (translated_label != NULL) {
- gchar *txt = g_strdup_printf("<span weight=\"bold\">%s</span>", translated_label);
+ gchar *txt = g_markup_printf_escaped("<span weight=\"bold\">%s</span>", translated_label);
label = g_object_new(gtk_label_get_type(),
"label", txt,