diff --git a/core/modules/system/system.admin.inc b/core/modules/system/system.admin.inc index 46c0aab..9d272a1 100644 --- a/core/modules/system/system.admin.inc +++ b/core/modules/system/system.admin.inc @@ -64,7 +64,7 @@ function system_admin_config_page() { '#theme' => 'admin_page', '#blocks' => $blocks, ); - return drupal_render($admin_page); + return $admin_page; } else { return t('You do not have any administrative items.'); @@ -898,7 +898,7 @@ function system_date_format_language_overview_page() { '#header' => $header, '#rows' => $rows, ); - return drupal_render($table); + return $table; } /**