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/taxonomy | |
parent | 607e9626d5af265b18e8319b156bb0fda3445cd4 (diff) | |
download | brdo-29c8e40e912f8975011224f824977b2353fe07b5.tar.gz brdo-29c8e40e912f8975011224f824977b2353fe07b5.tar.bz2 |
- Patch #355236 by Frando: refactor drupal_render() theming.
Diffstat (limited to 'modules/taxonomy')
-rw-r--r-- | modules/taxonomy/taxonomy.admin.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/taxonomy/taxonomy.admin.inc b/modules/taxonomy/taxonomy.admin.inc index 3d9bd5092..1129e33c9 100644 --- a/modules/taxonomy/taxonomy.admin.inc +++ b/modules/taxonomy/taxonomy.admin.inc @@ -91,7 +91,7 @@ function theme_taxonomy_overview_vocabularies($form) { drupal_add_tabledrag('taxonomy', 'order', 'sibling', 'vocabulary-weight'); } $header[] = array('data' => t('Operations'), 'colspan' => '3'); - return theme('table', $header, $rows, array('id' => 'taxonomy')) . drupal_render($form); + return theme('table', $header, $rows, array('id' => 'taxonomy')) . drupal_render_children($form); } /** @@ -605,7 +605,7 @@ function theme_taxonomy_overview_terms($form) { $header = array(t('Name'), t('Operations')); $output = theme('table', $header, $rows, array('id' => 'taxonomy')); - $output .= drupal_render($form); + $output .= drupal_render_children($form); $output .= theme('pager', NULL, $page_increment); return $output; |