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 /includes/locale.inc | |
parent | 607e9626d5af265b18e8319b156bb0fda3445cd4 (diff) | |
download | brdo-29c8e40e912f8975011224f824977b2353fe07b5.tar.gz brdo-29c8e40e912f8975011224f824977b2353fe07b5.tar.bz2 |
- Patch #355236 by Frando: refactor drupal_render() theming.
Diffstat (limited to 'includes/locale.inc')
-rw-r--r-- | includes/locale.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/locale.inc b/includes/locale.inc index 74b6efc7d..c5fcb592b 100644 --- a/includes/locale.inc +++ b/includes/locale.inc @@ -96,7 +96,7 @@ function theme_locale_languages_overview_form($form) { } $header = array(array('data' => t('English name')), array('data' => t('Native name')), array('data' => t('Code')), array('data' => t('Direction')), array('data' => t('Enabled')), array('data' => t('Default')), array('data' => t('Weight')), array('data' => t('Operations'))); $output = theme('table', $header, $rows, array('id' => 'language-order')); - $output .= drupal_render($form); + $output .= drupal_render_children($form); drupal_add_tabledrag('language-order', 'order', 'sibling', 'language-order-weight'); |