From 8993e085c2652aaa8dd0ac876f317acb1aaf6a7f Mon Sep 17 00:00:00 2001 From: webchick Date: Sat, 13 Oct 2012 09:23:43 -0700 Subject: [PATCH] Issue #1810652 by xjm: Fixed admin/config/system/site-information still references the default content feed when node.module is disabled. --- core/modules/system/system.admin.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/system/system.admin.inc b/core/modules/system/system.admin.inc index 8033ad0532e..c55289c366c 100644 --- a/core/modules/system/system.admin.inc +++ b/core/modules/system/system.admin.inc @@ -1415,7 +1415,7 @@ function system_site_information_settings($form, &$form_state) { '#title' => t('Default front page'), '#default_value' => ($site_config->get('page.front') != 'user' ? drupal_get_path_alias($site_config->get('page.front')) : ''), '#size' => 40, - '#description' => t('Optionally, specify a relative URL to display as the front page. Leave blank to display the default content feed.'), + '#description' => t('Optionally, specify a relative URL to display as the front page. Leave blank to display the default front page.'), '#field_prefix' => url(NULL, array('absolute' => TRUE)), ); $form['error_page'] = array(