diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-10-02 20:39:25 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-10-02 20:39:25 +0800 |
commit | 5172227bb59db4afdafc02e6249a199d1d8a4595 (patch) | |
tree | ace8b8302303169f490c80863b2171cbb890e949 /e-util | |
parent | 027c7e7279eaf28ab7dfb713f36ff6234f570eec (diff) | |
download | gsoc2013-evolution-5172227bb59db4afdafc02e6249a199d1d8a4595.tar gsoc2013-evolution-5172227bb59db4afdafc02e6249a199d1d8a4595.tar.gz gsoc2013-evolution-5172227bb59db4afdafc02e6249a199d1d8a4595.tar.bz2 gsoc2013-evolution-5172227bb59db4afdafc02e6249a199d1d8a4595.tar.lz gsoc2013-evolution-5172227bb59db4afdafc02e6249a199d1d8a4595.tar.xz gsoc2013-evolution-5172227bb59db4afdafc02e6249a199d1d8a4595.tar.zst gsoc2013-evolution-5172227bb59db4afdafc02e6249a199d1d8a4595.zip |
Bug 597108 - E_CONFIG_SECTION headers not properly escaped
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/e-config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-config.c b/e-util/e-config.c index 1c21098827..9d2a407546 100644 --- a/e-util/e-config.c +++ b/e-util/e-config.c @@ -768,7 +768,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, |