diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-11-06 14:50:56 (EST) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-11-06 14:50:56 (EST) |
commit | e32c7ab394a88eec8893af7f5a7352e167a69968 (patch) | |
tree | 769d736dff501be10f6ec29c72b5bafd26117270 | |
parent | bdbffdc30afe9faf487a466acace69a4b741960d (diff) | |
download | marquee-e32c7ab394a88eec8893af7f5a7352e167a69968.zip marquee-e32c7ab394a88eec8893af7f5a7352e167a69968.tar.gz marquee-e32c7ab394a88eec8893af7f5a7352e167a69968.tar.bz2 |
mq_html_input_hidden(): Fix
-rw-r--r-- | src/utils/html.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/html.c b/src/utils/html.c index 5c4b216..c71d159 100644 --- a/src/utils/html.c +++ b/src/utils/html.c @@ -1016,7 +1016,7 @@ gchar * mq_html_input_hidden(const gchar *name, const gchar *value) { return g_strdup_printf( - "<input type=\"text\" name=\"%s\" id=\"%s\" " + "<input type=\"hidden\" name=\"%s\" id=\"%s\" " "value=\"%s\">\n", name, name, value ? value : ""); } |