forked from blallo/rss-bridge
[HTMLUtils] Remove value from 'required' attribute
The 'required' attribute has no value, see https://www.w3.org/TR/html5/forms.html#the-required-attribute
This commit is contained in:
parent
43dce4b228
commit
a70e143dc4
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ CARD;
|
||||||
$additionalInfoString = "";
|
$additionalInfoString = "";
|
||||||
if(isset($inputEntry['required'])) {
|
if(isset($inputEntry['required'])) {
|
||||||
|
|
||||||
$additionalInfoString .= " required=\"required\"";
|
$additionalInfoString .= " required";
|
||||||
|
|
||||||
}
|
}
|
||||||
if(isset($inputEntry['pattern'])) {
|
if(isset($inputEntry['pattern'])) {
|
||||||
|
|
Loading…
Reference in a new issue