mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-10-28 11:41:19 +00:00
formField() regards 'min' parameter
This commit is contained in:
parent
29cf87d85d
commit
1210763111
|
|
@ -974,6 +974,7 @@ background-image: linear-gradient(to bottom, #882222, #111111);;
|
|||
((isset($value['value']) && is_string($value['value'])) || !empty($value['value']) ? ' value="'.$value['value'].'"' : '').
|
||||
(!empty($value['placeholder']) ? ' placeholder="'.$value['placeholder'].'"' : '').
|
||||
(!empty($value['autocomplete']) ? ' autocomplete="'.$value['autocomplete'].'"' : '').
|
||||
(isset($value['min']) ? ' min="'.$value['min'].'"' : '').
|
||||
(!empty($value['checked']) ? ' checked' : '').
|
||||
(!empty($value['required']) ? ' required' : '');
|
||||
if(!empty($value['attributes']) && is_array($value['attributes']))
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user