aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVjacheslav Trushkin <cyberalien@gmail.com>2013-04-09 22:11:46 +0300
committerSenky <jakubsenko@gmail.com>2013-05-20 18:42:03 +0200
commit854b88d1399b01c107cfc836e4f02be7ab908aba (patch)
tree6193a2f27fffc164553150d272695c4d5beb9e57
parent3547b9738a64ef2a97dd1865d6169e84f9c02c24 (diff)
downloadforums-854b88d1399b01c107cfc836e4f02be7ab908aba.tar
forums-854b88d1399b01c107cfc836e4f02be7ab908aba.tar.gz
forums-854b88d1399b01c107cfc836e4f02be7ab908aba.tar.bz2
forums-854b88d1399b01c107cfc836e4f02be7ab908aba.tar.xz
forums-854b88d1399b01c107cfc836e4f02be7ab908aba.zip
[ticket/11010] Add HTML5 input types to installer
Add new HTML5 input types to installer PHPBB3-11010
-rw-r--r--phpBB/install/index.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/phpBB/install/index.php b/phpBB/install/index.php
index 57bcdaffc1..e3e7f0e77f 100644
--- a/phpBB/install/index.php
+++ b/phpBB/install/index.php
@@ -666,6 +666,22 @@ class module
{
case 'text':
case 'password':
+ // HTML5 text-like input types
+ case 'color':
+ case 'date':
+ case 'time':
+ case 'datetime':
+ case 'datetime-local':
+ case 'email':
+ case 'month':
+ case 'number':
+ case 'range':
+ case 'search':
+ case 'tel':
+ case 'time':
+ case 'url':
+ case 'week':
+
$size = (int) $tpl_type[1];
$maxlength = (int) $tpl_type[2];