Skip to content

Commit

Permalink
Update FormHelper.php
Browse files Browse the repository at this point in the history
  • Loading branch information
funadmin authored Jul 15, 2023
1 parent 74c111f commit c81db6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helper/FormHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public function input(string $name = '', string $type = 'text',array $options =
$disorread = $this->readonlyOrdisabled($options);
if ($type == 'hidden') {
return <<<EOF
<input type="{$type}" {$this->getDataPropAttr($name,$value,$options)} autocomplete="off" class="layui-input { $this->getClass($options)} {$disorread}/>
<input type="{$type}" {$this->getDataPropAttr($name,$value,$options)} autocomplete="off" class="layui-input {$this->getClass($options)} {$disorread}/>
EOF;
}
$str = <<<EOF
Expand Down

0 comments on commit c81db6c

Please sign in to comment.