aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVjacheslav Trushkin <cyberalien@gmail.com>2013-04-09 22:41:53 +0300
committerSenky <jakubsenko@gmail.com>2013-05-20 18:42:04 +0200
commit06b7e424fca4e42428a54b1cc7eba572a2ec2620 (patch)
treeee96cb3548ba38a8e022481725e9c44bfc86492b
parent854b88d1399b01c107cfc836e4f02be7ab908aba (diff)
downloadforums-06b7e424fca4e42428a54b1cc7eba572a2ec2620.tar
forums-06b7e424fca4e42428a54b1cc7eba572a2ec2620.tar.gz
forums-06b7e424fca4e42428a54b1cc7eba572a2ec2620.tar.bz2
forums-06b7e424fca4e42428a54b1cc7eba572a2ec2620.tar.xz
forums-06b7e424fca4e42428a54b1cc7eba572a2ec2620.zip
[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
-rw-r--r--phpBB/includes/functions_acp.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/phpBB/includes/functions_acp.php b/phpBB/includes/functions_acp.php
index 8c0fde70e5..eb89dbebc8 100644
--- a/phpBB/includes/functions_acp.php
+++ b/phpBB/includes/functions_acp.php
@@ -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];