summaryrefslogtreecommitdiff
path: root/modules/system/system.admin.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-08-26 10:53:45 +0000
committerDries Buytaert <dries@buytaert.net>2009-08-26 10:53:45 +0000
commit9d6dcc5682706c3f2d69220243a3c58d20c74200 (patch)
treeda46f198c4e7e785a28b2e944577d7e28c27f8a4 /modules/system/system.admin.inc
parent7c36ac0e493601ffa726590961c004d5b72bc2cc (diff)
downloadbrdo-9d6dcc5682706c3f2d69220243a3c58d20c74200.tar.gz
brdo-9d6dcc5682706c3f2d69220243a3c58d20c74200.tar.bz2
- Patch #423992 by JohnAlbin, Davy Van Den Bremt: remove show_blocks page variable.
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r--modules/system/system.admin.inc7
1 files changed, 0 insertions, 7 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index 3b115c872..0f98ef355 100644
--- a/modules/system/system.admin.inc
+++ b/modules/system/system.admin.inc
@@ -1308,12 +1308,6 @@ function system_site_information_settings() {
'#description' => t('This page is displayed when no other content matches the requested document. Leave blank to display a generic "page not found" page.'),
'#field_prefix' => url(NULL, array('absolute' => TRUE)) . (variable_get('clean_url', 0) ? '' : '?q=')
);
- $form['site_404_blocks'] = array(
- '#type' => 'checkbox',
- '#title' => t('Display blocks on default 404 (not found) page'),
- '#description' => t('Render all blocks on the default 404 (not found) page. Disabling blocks can help with performance but might leave users with a less functional site.'),
- '#default_value' => variable_get('site_404_blocks', 0)
- );
$form['cron_safe_threshold'] = array(
'#type' => 'select',
'#title' => t('Automatically run cron'),
@@ -1941,7 +1935,6 @@ function system_batch_page() {
// display a list of collected messages later.
drupal_set_page_content($output);
$page = element_info('page');
- $page['#show_blocks'] = FALSE;
$page['#show_messages'] = FALSE;
return $page;
}