From 718863a2fc759c7f09f547a6cae1857cf8570eb4 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Mon, 16 Jan 2017 14:47:00 -0500 Subject: [PATCH] more --- contrib/js/nntpchan/post-reply.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contrib/js/nntpchan/post-reply.js b/contrib/js/nntpchan/post-reply.js index c294c1b..8df57ff 100644 --- a/contrib/js/nntpchan/post-reply.js +++ b/contrib/js/nntpchan/post-reply.js @@ -83,7 +83,8 @@ function ReplyBox() { elem = document.createElement("input"); elem.name = "captcha"; elem.autocomplete = "off"; - table_insert_row(tbody, document.createTextNode("Solution"), [elem, submit]); + table_insert_row(tbody, document.createTextNode("Solution"), [elem]); + table_insert_row(tbody, document.createTextNode("Post"), [submit]); this.captcha_solution = elem; table.appendChild(tbody); this.elem.appendChild(table);