Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
9c7eecaa
Commit
9c7eecaa
authored
Sep 05, 2006
by
Dries
Browse files
- Patch
#82432
by edkwh: fixed user filter being broken.
parent
fb97d9ec
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/user/user.module
View file @
9c7eecaa
...
...
@@ -1935,8 +1935,6 @@ function user_admin_account() {
return
user_multiple_delete_confirm
();
}
$output
=
user_filter_form
();
$filter
=
user_build_filter_query
();
$header
=
array
(
...
...
@@ -2241,7 +2239,8 @@ function user_admin($callback_arg = '') {
$output
=
drupal_get_form
(
'user_register'
);
break
;
default
:
$output
=
drupal_get_form
(
'user_admin_account'
);
$output
.
=
drupal_get_form
(
'user_filter_form'
);
$output
.
=
drupal_get_form
(
'user_admin_account'
);
}
return
$output
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment