mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-16 14:46:28 +02:00
[ticket/11010] Add all HTML5 input types to ACP
Add all new HTML5 input types to functions_acp.php, handle them as text for now PHPBB3-11010
This commit is contained in:
committed by
Senky
parent
854b88d139
commit
06b7e424fc
@ -251,6 +251,18 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
|
|||||||
case 'password':
|
case 'password':
|
||||||
case 'url':
|
case 'url':
|
||||||
case 'email':
|
case 'email':
|
||||||
|
case 'color':
|
||||||
|
case 'date':
|
||||||
|
case 'time':
|
||||||
|
case 'datetime':
|
||||||
|
case 'datetime-local':
|
||||||
|
case 'month':
|
||||||
|
case 'range':
|
||||||
|
case 'search':
|
||||||
|
case 'tel':
|
||||||
|
case 'time':
|
||||||
|
case 'url':
|
||||||
|
case 'week':
|
||||||
$size = (int) $tpl_type[1];
|
$size = (int) $tpl_type[1];
|
||||||
$maxlength = (int) $tpl_type[2];
|
$maxlength = (int) $tpl_type[2];
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user