cgi-bin: Use readonly="readonly" attribute on html input elements

The proper way to mark readonly is to use readonly="readonly", not
readonly="true", like it was done some places.
This commit is contained in:
Alf Høgemark
2014-02-18 18:48:57 +01:00
parent b21d47c804
commit 153cf6406c
6 changed files with 6 additions and 6 deletions

View File

@@ -41,7 +41,7 @@ my %mainsettings = ();
&Header::openbox('100%', 'left',"MD Raid State");
print '<textarea rows="25" cols="80" readonly="true">';
print '<textarea rows="25" cols="80" readonly="readonly">';
print `cat "/proc/mdstat"`;
print '</textarea>';