2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 09:16:53 +00:00

01_FHEMWEB.pm: add autocapitalize off (Forum #78130)

git-svn-id: https://svn.fhem.de/fhem/trunk@15276 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2017-10-18 08:02:08 +00:00
parent d2cbd826ed
commit 07ded93c73

View File

@ -2085,7 +2085,9 @@ FW_textfieldv($$$$)
my $v;
$v=" value=\"$value\"" if(defined($value));
return if($FW_hiddenroom{input});
my $s = "<input type=\"text\" name=\"$n\" class=\"$class\" size=\"$z\"$v/>";
my $s = "<input type=\"text\" name=\"$n\" class=\"$class\" ".
"autocapitalize=\"off\" size=\"$z\"$v/>";
return $s;
}