all repos — cgit @ 9afda36ed72083febca5e1a249b7f9f09205fe16

a hyperfast web frontend for git written in c

ui-shared: Remove a name attribute with an empty value

The name attribute is optional in an input element, but it must not be
an empty value.

See: https://html.spec.whatwg.org/#attr-fe-name
See: https://html.spec.whatwg.org/#the-input-element
Juuso Lapinlampi wub@partyvan.eu
Wed, 11 May 2016 18:04:18 +0000
commit

9afda36ed72083febca5e1a249b7f9f09205fe16

parent

8d05b398bb1f4effcb59dddc62a3ea1f021f8631

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M ui-shared.cui-shared.c

@@ -944,7 +944,7 @@ for_each_branch_ref(print_branch_option, ctx.qry.head);

if (ctx.repo->enable_remote_branches) for_each_remote_ref(print_branch_option, ctx.qry.head); html("</select> "); - html("<input type='submit' name='' value='switch'/>"); + html("<input type='submit' value='switch'/>"); html("</form>"); } } else