summaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-11-06 14:50:56 (EST)
committer Patrick McDermott <pj@pehjota.net>2017-11-06 14:50:56 (EST)
commite32c7ab394a88eec8893af7f5a7352e167a69968 (patch)
tree769d736dff501be10f6ec29c72b5bafd26117270 /src/utils
parentbdbffdc30afe9faf487a466acace69a4b741960d (diff)
downloadmarquee-e32c7ab394a88eec8893af7f5a7352e167a69968.zip
marquee-e32c7ab394a88eec8893af7f5a7352e167a69968.tar.gz
marquee-e32c7ab394a88eec8893af7f5a7352e167a69968.tar.bz2
mq_html_input_hidden(): Fix
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/html.c2
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 : "");
}