1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-26 04:55:12 +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:
Vjacheslav Trushkin
2013-04-09 22:41:53 +03:00
committed by Senky
parent 854b88d139
commit 06b7e424fc

View File

@ -251,6 +251,18 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
case 'password':
case 'url':
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];
$maxlength = (int) $tpl_type[2];