diff options
author | mistic100 <mistic@piwigo.org> | 2011-04-02 13:36:14 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2011-04-02 13:36:14 +0000 |
commit | 00b11dd74e34f1eed8db29edfda49a4b5ff32313 (patch) | |
tree | 98ffc67cd858a9d1adc49e512602c010f48340e6 /admin | |
parent | 8212dd5087670b7777ba49a6b1a4e11f482b3c10 (diff) |
bug:2233 specials chars error on user_list.php
git-svn-id: http://piwigo.org/svn/trunk@9989 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/user_list.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/user_list.php b/admin/user_list.php index af76a291f..18e9ce2b4 100644 --- a/admin/user_list.php +++ b/admin/user_list.php @@ -522,7 +522,7 @@ $template->assign( 'U_HELP' => get_root_url().'admin/popuphelp.php?page=user_list', 'F_ADD_ACTION' => $base_url, - 'F_USERNAME' => @htmlentities($_GET['username']), + 'F_USERNAME' => @htmlentities($_GET['username'], ENT_COMPAT, 'UTF-8'), 'F_FILTER_ACTION' => get_root_url().'admin.php' )); |