diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-07-29 06:39:35 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-07-29 06:39:35 +0000 |
commit | 715a2d655f70675f3bec8a320a864865d6d02d47 (patch) | |
tree | fffff07032e77f118a4290fc62f290d91cf831f0 /modules/system/system.admin.inc | |
parent | 40c8986ac74b0ab15f0571c24052d1be06bd2ccb (diff) | |
download | brdo-715a2d655f70675f3bec8a320a864865d6d02d47.tar.gz brdo-715a2d655f70675f3bec8a320a864865d6d02d47.tar.bz2 |
- Patch #511748 by moshe weitzman: pushing rending to later in the cycle so there is more room for customization.
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r-- | modules/system/system.admin.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 284d02eec..2b569dee4 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -1107,7 +1107,11 @@ function system_ip_blocking() { $build['system_ip_blocking_form'] = drupal_get_form('system_ip_blocking_form'); - $build['system_ip_blocking_table'] = array('#markup' => theme('table', $header, $rows)); + $build['system_ip_blocking_table'] = array( + '#theme' => 'table', + '#header' => $header, + '#rows' => $rows, + ); return $build; } |