Skip to content
Snippets Groups Projects
Commit 9c7eecaa authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #82432 by edkwh: fixed user filter being broken.

parent fb97d9ec
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -1935,8 +1935,6 @@ function user_admin_account() { ...@@ -1935,8 +1935,6 @@ function user_admin_account() {
return user_multiple_delete_confirm(); return user_multiple_delete_confirm();
} }
$output = user_filter_form();
$filter = user_build_filter_query(); $filter = user_build_filter_query();
$header = array( $header = array(
...@@ -2241,7 +2239,8 @@ function user_admin($callback_arg = '') { ...@@ -2241,7 +2239,8 @@ function user_admin($callback_arg = '') {
$output = drupal_get_form('user_register'); $output = drupal_get_form('user_register');
break; break;
default: default:
$output = drupal_get_form('user_admin_account'); $output .= drupal_get_form('user_filter_form');
$output .= drupal_get_form('user_admin_account');
} }
return $output; return $output;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment