summaryrefslogtreecommitdiff
path: root/modules/profile/profile.admin.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-02-03 18:55:32 +0000
committerDries Buytaert <dries@buytaert.net>2009-02-03 18:55:32 +0000
commit29c8e40e912f8975011224f824977b2353fe07b5 (patch)
treebb6a3341259232340b88ca120cf349c57404c13b /modules/profile/profile.admin.inc
parent607e9626d5af265b18e8319b156bb0fda3445cd4 (diff)
downloadbrdo-29c8e40e912f8975011224f824977b2353fe07b5.tar.gz
brdo-29c8e40e912f8975011224f824977b2353fe07b5.tar.bz2
- Patch #355236 by Frando: refactor drupal_render() theming.
Diffstat (limited to 'modules/profile/profile.admin.inc')
-rw-r--r--modules/profile/profile.admin.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/profile/profile.admin.inc b/modules/profile/profile.admin.inc
index 67e1d0b8e..e0252ce10 100644
--- a/modules/profile/profile.admin.inc
+++ b/modules/profile/profile.admin.inc
@@ -152,7 +152,7 @@ function theme_profile_admin_overview($form) {
$header[] = array('data' => t('Operations'), 'colspan' => 2);
$output = theme('table', $header, $rows, array('id' => 'profile-fields'));
- $output .= drupal_render($form);
+ $output .= drupal_render_children($form);
return $output;
}