From 25c738ccdb5d387e6773aaab14657bf539b2f155 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 1 Mar 2011 16:48:04 +0100 Subject: [PATCH] [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 --- phpBB/adm/style/acp_ban.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; } // ]]>