diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-02-03 18:55:32 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-02-03 18:55:32 +0000 |
commit | 29c8e40e912f8975011224f824977b2353fe07b5 (patch) | |
tree | bb6a3341259232340b88ca120cf349c57404c13b /modules/user/user.admin.inc | |
parent | 607e9626d5af265b18e8319b156bb0fda3445cd4 (diff) | |
download | brdo-29c8e40e912f8975011224f824977b2353fe07b5.tar.gz brdo-29c8e40e912f8975011224f824977b2353fe07b5.tar.bz2 |
- Patch #355236 by Frando: refactor drupal_render() theming.
Diffstat (limited to 'modules/user/user.admin.inc')
-rw-r--r-- | modules/user/user.admin.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/user/user.admin.inc b/modules/user/user.admin.inc index 6a2b05136..b0e8d50a5 100644 --- a/modules/user/user.admin.inc +++ b/modules/user/user.admin.inc @@ -651,7 +651,7 @@ function theme_user_admin_perm($form) { } $output = theme('system_compact_link'); $output .= theme('table', $header, $rows, array('id' => 'permissions')); - $output .= drupal_render($form); + $output .= drupal_render_children($form); return $output; } @@ -788,7 +788,7 @@ function theme_user_admin_account($form) { $output .= drupal_render($form['pager']); } - $output .= drupal_render($form); + $output .= drupal_render_children($form); return $output; } @@ -811,7 +811,7 @@ function theme_user_admin_new_role($form) { } $rows[] = array(drupal_render($form['name']), array('data' => drupal_render($form['submit']), 'colspan' => 2)); - $output = drupal_render($form); + $output = drupal_render_children($form); $output .= theme('table', $header, $rows); return $output; @@ -826,7 +826,7 @@ function theme_user_filter_form($form) { $output = '<div id="user-admin-filter">'; $output .= drupal_render($form['filters']); $output .= '</div>'; - $output .= drupal_render($form); + $output .= drupal_render_children($form); return $output; } |