diff options
-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 : ""); } |