diff options
author | Andreas Fischer <bantu@phpbb.com> | 2011-06-09 13:00:39 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2011-06-09 13:00:39 +0200 |
commit | 7d5438eb033e8d99a9b77a98292f0f7e89749fa6 (patch) | |
tree | 4f8ae2c118b707fc3c40cd29f6cc486f135224d4 /phpBB/includes/functions_acp.php | |
parent | c49dce2be34064ffe66829cbb34e2bed9ed03492 (diff) | |
parent | c6e946c65ff03f374261977fecd18656022759e2 (diff) | |
download | forums-7d5438eb033e8d99a9b77a98292f0f7e89749fa6.tar forums-7d5438eb033e8d99a9b77a98292f0f7e89749fa6.tar.gz forums-7d5438eb033e8d99a9b77a98292f0f7e89749fa6.tar.bz2 forums-7d5438eb033e8d99a9b77a98292f0f7e89749fa6.tar.xz forums-7d5438eb033e8d99a9b77a98292f0f7e89749fa6.zip |
Merge branch 'develop-olympus' into develop
* develop-olympus:
[ticket/8138] Add autocomplete="off" to acp_board and ldap settings
[ticket/8138] Add autocomplete="off" to a user and forum ACP.
Conflicts:
phpBB/adm/index.php
Diffstat (limited to 'phpBB/includes/functions_acp.php')
-rw-r--r-- | phpBB/includes/functions_acp.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_acp.php b/phpBB/includes/functions_acp.php index 5ff77855f0..52c9b9147f 100644 --- a/phpBB/includes/functions_acp.php +++ b/phpBB/includes/functions_acp.php @@ -203,7 +203,7 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars) $size = (int) $tpl_type[1]; $maxlength = (int) $tpl_type[2]; - $tpl = '<input id="' . $key . '" type="' . $tpl_type[0] . '"' . (($size) ? ' size="' . $size . '"' : '') . ' maxlength="' . (($maxlength) ? $maxlength : 255) . '" name="' . $name . '" value="' . $new[$config_key] . '" />'; + $tpl = '<input id="' . $key . '" type="' . $tpl_type[0] . '"' . (($size) ? ' size="' . $size . '"' : '') . ' maxlength="' . (($maxlength) ? $maxlength : 255) . '" name="' . $name . '" value="' . $new[$config_key] . '"' . (($tpl_type[0] === 'password') ? ' autocomplete="off"' : '') . ' />'; break; case 'dimension': |