git-svn-id: file:///svn/phpbb/trunk@7837 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M 2007-07-06 12:20:22 +00:00
parent 281ed483de
commit 554e05a5b5
2 changed files with 2 additions and 1 deletions

View file

@ -222,6 +222,7 @@ p a {
<li>[Fix] Topic deletion via the user post deletion mechanism did not take into account statistics for forums that hold shadow topics (Bug #12981)</li>
<li>[Fix] Allow for negative and decimal numbers to be in transposed queries in the Oracle and Firebird DBAL (Bug #13033)</li>
<li>[Fix] Some jabber related bugs (Bug #12989, #11805, #11809)</li>
<li>[Fix] Added UTF-8 support for banning via the MCP (Bug #13013)</li>
</ul>

View file

@ -37,7 +37,7 @@ class mcp_ban
{
// Grab the list of entries
$ban = request_var('ban', '');
$ban = request_var('ban', '', ($mode === 'user') true ? false);
$ban_len = request_var('banlength', 0);
$ban_len_other = request_var('banlengthother', '');
$ban_exclude = request_var('banexclude', 0);