aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorSenky <jakubsenko@gmail.com>2012-08-08 13:35:34 +0200
committerSenky <jakubsenko@gmail.com>2013-05-20 18:34:26 +0200
commit66a943cfd8f35cc55f15168d586a9b71c076ab7b (patch)
tree0e4aa8e6e3c2f4c61ccc7989910e115e35db60a2 /phpBB
parentf26257dc51c9be2ff26b2702d26cbeb96e3ceb5a (diff)
downloadforums-66a943cfd8f35cc55f15168d586a9b71c076ab7b.tar
forums-66a943cfd8f35cc55f15168d586a9b71c076ab7b.tar.gz
forums-66a943cfd8f35cc55f15168d586a9b71c076ab7b.tar.bz2
forums-66a943cfd8f35cc55f15168d586a9b71c076ab7b.tar.xz
forums-66a943cfd8f35cc55f15168d586a9b71c076ab7b.zip
[ticket/11010] adding new input types into build_cfg_template()
PHPBB3-11010
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/functions_acp.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/includes/functions_acp.php b/phpBB/includes/functions_acp.php
index d6bd9e35dd..f4e9613d3b 100644
--- a/phpBB/includes/functions_acp.php
+++ b/phpBB/includes/functions_acp.php
@@ -249,6 +249,8 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
{
case 'text':
case 'password':
+ case 'url':
+ case 'email':
$size = (int) $tpl_type[1];
$maxlength = (int) $tpl_type[2];