1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 12:03:21 +01:00

show unban reasons? ;)

git-svn-id: file:///svn/phpbb/trunk@8166 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen 2007-10-12 10:34:06 +00:00
parent 6b334d8b7c
commit a1727d9401

View File

@ -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];
}
// ]]>