aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/index.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2014-03-26 23:35:57 -0400
committerNils Adermann <naderman@naderman.de>2014-03-26 23:35:57 -0400
commit02c4d4ee7ec1e135397003e6685af4503e9ce40d (patch)
treeabce268dc2a15f152e2674f93726b71b9fbb88a3 /phpBB/install/index.php
parent5e688f9540ebb5b32a22202257d5ca36e8e3e254 (diff)
parent47ab801440ff51cda270c6dbe5dc487a8e68e55d (diff)
downloadforums-02c4d4ee7ec1e135397003e6685af4503e9ce40d.tar
forums-02c4d4ee7ec1e135397003e6685af4503e9ce40d.tar.gz
forums-02c4d4ee7ec1e135397003e6685af4503e9ce40d.tar.bz2
forums-02c4d4ee7ec1e135397003e6685af4503e9ce40d.tar.xz
forums-02c4d4ee7ec1e135397003e6685af4503e9ce40d.zip
Merge branch 'develop-olympus' into develop-ascraeus
* develop-olympus: [ticket/12310] Don't autocomplete SMTP user/pass on install
Diffstat (limited to 'phpBB/install/index.php')
-rw-r--r--phpBB/install/index.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/install/index.php b/phpBB/install/index.php
index b18a9dce1b..66c8559e98 100644
--- a/phpBB/install/index.php
+++ b/phpBB/install/index.php
@@ -720,8 +720,9 @@ class module
$size = (int) $tpl_type[1];
$maxlength = (int) $tpl_type[2];
+ $autocomplete = (isset($options['autocomplete']) && $options['autocomplete'] == 'off') ? ' autocomplete="off"' : '';
- $tpl = '<input id="' . $name . '" type="' . $tpl_type[0] . '"' . (($size) ? ' size="' . $size . '"' : '') . ' maxlength="' . (($maxlength) ? $maxlength : 255) . '" name="' . $name . '" value="' . $value . '" />';
+ $tpl = '<input id="' . $name . '" type="' . $tpl_type[0] . '"' . (($size) ? ' size="' . $size . '"' : '') . ' maxlength="' . (($maxlength) ? $maxlength : 255) . '" name="' . $name . '"' . $autocomplete . ' value="' . $value . '" />';
break;
case 'textarea':