diff --git a/modules/user/user.module b/modules/user/user.module index de2ec41693a..b00118d4229 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -2052,7 +2052,7 @@ function theme_user_admin_account($form) { t('Operations') ); - $output .= drupal_render($form['options']); + $output = drupal_render($form['options']); if (isset($form['name']) && is_array($form['name'])) { foreach (element_children($form['name']) as $key) { $rows[] = array( @@ -2317,7 +2317,7 @@ function user_admin($callback_arg = '') { $output = drupal_get_form('user_multiple_delete_confirm'); } else { - $output .= drupal_get_form('user_filter_form'); + $output = drupal_get_form('user_filter_form'); $output .= drupal_get_form('user_admin_account'); } } @@ -2559,7 +2559,7 @@ function user_filter_form() { * Theme user administration filter form. */ function theme_user_filter_form($form) { - $output .= '