From 854b88d1399b01c107cfc836e4f02be7ab908aba Mon Sep 17 00:00:00 2001 From: Vjacheslav Trushkin Date: Tue, 9 Apr 2013 22:11:46 +0300 Subject: [ticket/11010] Add HTML5 input types to installer Add new HTML5 input types to installer PHPBB3-11010 --- phpBB/install/index.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'phpBB/install') 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]; -- cgit v1.2.1