cgit

commit 9afda36ed72083febca5e1a249b7f9f09205fe16

Author: Juuso Lapinlampi <wub@partyvan.eu>

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

 ui-shared.c | 2 +-


diff --git a/ui-shared.c b/ui-shared.c
index 1529ff1c15c191eda2a3225579cc0cd6175ffc17..770b685d6ee7d958c2e2ed47c8f3e33723c67099 100644
--- a/ui-shared.c
+++ b/ui-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