diff options
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.admin.inc | 6 | ||||
-rw-r--r-- | modules/system/system.module | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index bc3dea60a..d3a607ce3 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -1084,11 +1084,11 @@ function system_ip_blocking() { ); } - $output .= drupal_get_form('system_ip_blocking_form'); + $build['system_ip_blocking_form'] = drupal_get_form('system_ip_blocking_form'); - $output .= theme('table', $header, $rows); + $build['system_ip_blocking_table'] = array('#markup' => theme('table', $header, $rows)); - return $output; + return $build; } /** diff --git a/modules/system/system.module b/modules/system/system.module index 51ce7e288..57f0b787e 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -1709,7 +1709,7 @@ function system_actions_manage() { } if ($actions_map) { - $output .= drupal_get_form('system_actions_manage_form', $options); + $output .= drupal_render(drupal_get_form('system_actions_manage_form', $options)); } return $output; |