Skip to content

Commit

Permalink
Fix manage user page filter '0'-'9' selection
Browse files Browse the repository at this point in the history
Fixes #22445
  • Loading branch information
atrol committed Mar 1, 2017
1 parent 53eeddb commit 472352d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manage_user_page.php
Expand Up @@ -170,7 +170,7 @@
} else {
$t_title = '';
}
$t_active = $t_prefix === $f_filter ? 'active' : '';
$t_active = (string)$t_prefix === $f_filter ? 'active' : '';
print_manage_user_sort_link( 'manage_user_page.php',
$t_caption,
$c_sort,
Expand Down

0 comments on commit 472352d

Please sign in to comment.