Skip to content

Commit

Permalink
merge -r960:997 from branches/branch-1_5 into trunk (bug 238 fixed)
Browse files Browse the repository at this point in the history
git-svn-id: http://piwigo.org/svn/trunk@998 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
nikrou committed Jan 1, 2006
1 parent 9a83134 commit 00157ca
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion admin/user_list.php
Expand Up @@ -261,9 +261,16 @@ function get_filtered_user_list()
$page['infos'],
sprintf(
l10n('%d users deleted'),
count($collection)
count($collection)
)
);
foreach ($page['filtered_users'] as $filter_key => $filter_user)
{
if (in_array($filter_user['id'], $collection))
{
unset($page['filtered_users'][$filter_key]);
}
}
}
else
{
Expand Down

0 comments on commit 00157ca

Please sign in to comment.