From 2aa8ff9808cd1c745b6e8f8a7988ad45db6454ff Mon Sep 17 00:00:00 2001 From: acydburn Date: Fri, 12 Oct 2007 10:34:06 +0000 Subject: [PATCH] show unban reasons? ;) git-svn-id: http://code.phpbb.com/svn/phpbb/trunk@8166 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/styles/prosilver/template/mcp_ban.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/phpBB/styles/prosilver/template/mcp_ban.html b/phpBB/styles/prosilver/template/mcp_ban.html index 2b0c1df9e..84a174827 100644 --- a/phpBB/styles/prosilver/template/mcp_ban.html +++ b/phpBB/styles/prosilver/template/mcp_ban.html @@ -23,9 +23,9 @@ function display_details(option) { - document.getElementById('unbangivereason').textContent = ban_give_reason[option]; - document.getElementById('unbanreason').textContent = ban_reason[option]; - document.getElementById('unbanlength').textContent = ban_length[option]; + document.getElementById('unbangivereason').innerHTML = ban_give_reason[option]; + document.getElementById('unbanreason').innerHTML = ban_reason[option]; + document.getElementById('unbanlength').innerHTML = ban_length[option]; } // ]]> -- 2.11.4.GIT