From: Andrea Zagli Date: Tue, 30 Aug 2011 10:06:14 +0000 (+0200) Subject: & in fields content from db/gtktreemodel was considere an xml entity start. X-Git-Tag: 0.5.0~30 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=13a2444057f6f2f847168d59159b4595d06fc694;p=reptool%2Flibreptool & in fields content from db/gtktreemodel was considere an xml entity start. fixes #34 --- diff --git a/src/rptreport.c b/src/rptreport.c index 7358297..fd22bad 100644 --- a/src/rptreport.c +++ b/src/rptreport.c @@ -2656,6 +2656,16 @@ gchar { ret = g_strdup ("{ERROR}"); } + else + { + gchar **strv; + + strv = g_strsplit (ret, "&", -1); + g_free (ret); + + ret = g_strjoinv ("&", strv); + g_strfreev (strv); + } return ret; } diff --git a/tests/db_test.db b/tests/db_test.db index 4c331e8..886a435 100644 Binary files a/tests/db_test.db and b/tests/db_test.db differ