Skip to content

Commit

Permalink
Removed a comment; moved a comment before the commented line
Browse files Browse the repository at this point in the history
  • Loading branch information
kiamlaluno committed Apr 17, 2024
1 parent 1176aa3 commit 3ea7d17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/modules/user/user.module
Expand Up @@ -2751,10 +2751,10 @@ function user_role_revoke_permissions($role_name, array $permissions = array())
* List user administration filters that can be applied.
*/
function user_filters() {
// Regular filters
$filters = array();
$roles = user_roles(TRUE);
unset($roles[BACKDROP_AUTHENTICATED_ROLE]); // Don't list authorized role.
// Don't list authorized role.
unset($roles[BACKDROP_AUTHENTICATED_ROLE]);
if (count($roles)) {
$filters['role'] = array(
'title' => t('role'),
Expand Down

0 comments on commit 3ea7d17

Please sign in to comment.