diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2011-03-01 16:48:04 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2011-03-01 16:48:04 +0100 |
commit | 25c738ccdb5d387e6773aaab14657bf539b2f155 (patch) | |
tree | 658f47bfc8c070e3a244231cd77ce3a2136e7d05 /phpBB/adm/style/acp_ban.html | |
parent | 23475abab3e1a4e560d7b8b107fc76f9b88792f8 (diff) | |
download | forums-25c738ccdb5d387e6773aaab14657bf539b2f155.tar forums-25c738ccdb5d387e6773aaab14657bf539b2f155.tar.gz forums-25c738ccdb5d387e6773aaab14657bf539b2f155.tar.bz2 forums-25c738ccdb5d387e6773aaab14657bf539b2f155.tar.xz forums-25c738ccdb5d387e6773aaab14657bf539b2f155.zip |
[ticket/9915] "Length of ban:" is not displayed in ACP
Regression from PHPBB3-9695, innerHTML does not work on input-fields, so we
need to go back to "value", which we had before.
PHPBB3-9915
Diffstat (limited to 'phpBB/adm/style/acp_ban.html')
-rw-r--r-- | phpBB/adm/style/acp_ban.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/adm/style/acp_ban.html b/phpBB/adm/style/acp_ban.html index cf44f4aaa7..0e2e71822e 100644 --- a/phpBB/adm/style/acp_ban.html +++ b/phpBB/adm/style/acp_ban.html @@ -33,7 +33,7 @@ { document.getElementById('acp_unban').unbangivereason.innerHTML = ban_give_reason[option]; document.getElementById('acp_unban').unbanreason.innerHTML = ban_reason[option]; - document.getElementById('acp_unban').unbanlength.innerHTML = ban_length[option]; + document.getElementById('acp_unban').unbanlength.value = ban_length[option]; } // ]]> |