Skip to content
Snippets Groups Projects
Unverified Commit 96d5526d authored by Michael Große's avatar Michael Große
Browse files

Create valid empty options

The HTML-spec[0] specifies:

> If the element has no label attribute and is not a child of a datalist element: Text that is not inter-element whitespace.

So a non-breaking space is valid solution.

[0] https://html.spec.whatwg.org/multipage/form-elements.html#the-option-element
parent ef365ccc
No related branches found
No related tags found
No related merge requests found
......@@ -1645,7 +1645,7 @@ function tpl_mediaTree() {
* @param string $empty empty option label
* @param string $button submit button label
*/
function tpl_actiondropdown($empty = '', $button = '>') {
function tpl_actiondropdown($empty = ' ', $button = '>') {
global $ID;
global $REV;
global $lang;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment