From: Andrea Zagli Date: Sat, 30 Jan 2016 15:45:05 +0000 (+0100) Subject: ZakFormElement::format now returns the input value when no format specified. X-Git-Tag: debian/0.0.1-1~8 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=0653c8c8fe9bd27b53531adef9d5c8e1c50030f8;p=zakform%2Flibzakform ZakFormElement::format now returns the input value when no format specified. --- diff --git a/src/formelement.c b/src/formelement.c index 56c7c7b..94d8dc0 100644 --- a/src/formelement.c +++ b/src/formelement.c @@ -481,6 +481,10 @@ static gchar g_date_time_unref (gdt); } } + else + { + ret = g_strdup (value); + } return ret; }