From c20f5a6ddb5bad28e973dc74767d6a29501bb909 Mon Sep 17 00:00:00 2001 From: David M Date: Fri, 20 Jul 2007 19:07:19 +0000 Subject: #13643 git-svn-id: file:///svn/phpbb/trunk@7912 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/docs/CHANGELOG.html | 1 + phpBB/includes/acp/acp_prune.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index f4a5a3afaf..6a8e27f6dd 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -263,6 +263,7 @@ p a {
  • [Fix] Change misleading custom BBCodes explanation, regarding tokens and useable template variables (Bug #12403, #5660)
  • [Feature] Ability to disable birthdays completely with new board features setting
  • [Fix] Fix disallowed username check (Bug #13511)
  • +
  • [Fix] Allow for unicode usernames to be pruned (Bug #13643)
  • diff --git a/phpBB/includes/acp/acp_prune.php b/phpBB/includes/acp/acp_prune.php index 14885394e6..34f43e2426 100644 --- a/phpBB/includes/acp/acp_prune.php +++ b/phpBB/includes/acp/acp_prune.php @@ -307,7 +307,7 @@ class acp_prune 'mode' => $mode, 'prune' => 1, - 'users' => request_var('users', ''), + 'users' => request_var('users', '', true), 'username' => request_var('username', '', true), 'email' => request_var('email', ''), 'joined_select' => request_var('joined_select', ''), -- cgit v1.2.1