aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_acp.php
diff options
context:
space:
mode:
authorSenky <jakubsenko@gmail.com>2013-05-12 15:01:43 +0200
committerSenky <jakubsenko@gmail.com>2013-05-20 18:42:08 +0200
commitae2700eef29a0cda1ff9abecb9bdc6beaf199982 (patch)
tree8879a7cd2bf32dd1c38ff9796f78b3bc95b1427d /phpBB/includes/functions_acp.php
parent4c03c22e503a4317db93e7e61f676a396318b097 (diff)
downloadforums-ae2700eef29a0cda1ff9abecb9bdc6beaf199982.tar
forums-ae2700eef29a0cda1ff9abecb9bdc6beaf199982.tar.gz
forums-ae2700eef29a0cda1ff9abecb9bdc6beaf199982.tar.bz2
forums-ae2700eef29a0cda1ff9abecb9bdc6beaf199982.tar.xz
forums-ae2700eef29a0cda1ff9abecb9bdc6beaf199982.zip
[ticket/11010] updating tests
PHPBB3-11010
Diffstat (limited to 'phpBB/includes/functions_acp.php')
-rw-r--r--phpBB/includes/functions_acp.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/phpBB/includes/functions_acp.php b/phpBB/includes/functions_acp.php
index 247d181fb0..f384d242ce 100644
--- a/phpBB/includes/functions_acp.php
+++ b/phpBB/includes/functions_acp.php
@@ -289,11 +289,10 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
if ( isset($tpl_type[2]) )
{
$max = (int) $tpl_type[2];
- $maxlength = strlen( (string) $max );
- $size = strlen( (string) $max );
+ $size = $maxlength = strlen( (string) $max );
}
- $tpl = '<input id="' . $key . '" type="number" ' . (( $size != '' ) ? ' size="' . $size . '"' : '') . ' maxlength="' . (($maxlength != '') ? $maxlength : 255) . '"' . (( $min != '' ) ? ' min="' . $min . '"' : '') . (( $max != '' ) ? ' max="' . $max . '"' : '') . ' name="config[' . $config_key . '_width]" value="' . $new[$config_key . '_width'] . '" /> x <input type="number" ' . (( $size != '' ) ? ' size="' . $size . '"' : '') . ' maxlength="' . (($maxlength != '') ? $maxlength : 255) . '"' . (( $min != '' ) ? ' min="' . $min . '"' : '') . (( $max != '' ) ? ' max="' . $max . '"' : '') . ' name="config[' . $config_key . '_height]" value="' . $new[$config_key . '_height'] . '" />';
+ $tpl = '<input id="' . $key . '" type="number"' . (( $size != '' ) ? ' size="' . $size . '"' : '') . ' maxlength="' . (($maxlength != '') ? $maxlength : 255) . '"' . (( $min !== '' ) ? ' min="' . $min . '"' : '') . (( $max != '' ) ? ' max="' . $max . '"' : '') . ' name="config[' . $config_key . '_width]" value="' . $new[$config_key . '_width'] . '" /> x <input type="number"' . (( $size != '' ) ? ' size="' . $size . '"' : '') . ' maxlength="' . (($maxlength != '') ? $maxlength : 255) . '"' . (( $min !== '' ) ? ' min="' . $min . '"' : '') . (( $max != '' ) ? ' max="' . $max . '"' : '') . ' name="config[' . $config_key . '_height]" value="' . $new[$config_key . '_height'] . '" />';
break;
case 'textarea':