summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2008-10-11 02:33:14 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2008-10-11 02:33:14 +0000
commit7e02f2f782418d3452bae636e63e3439e9802336 (patch)
tree220f275eb5fd29df31678ea4ff7b2885ce661b53 /modules/system
parent3ab972cd4f346a620e59a420dfddd581f77114be (diff)
downloadbrdo-7e02f2f782418d3452bae636e63e3439e9802336.tar.gz
brdo-7e02f2f782418d3452bae636e63e3439e9802336.tar.bz2
#318984 by Xano and Dave Reid: Change 'Core - optional' to 'Core' in modules UI.
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/system.info2
-rw-r--r--modules/system/system.test6
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/system/system.info b/modules/system/system.info
index 101e0e749..bbd5f7b18 100644
--- a/modules/system/system.info
+++ b/modules/system/system.info
@@ -1,7 +1,7 @@
; $Id$
name = System
description = Handles general site configuration for administrators.
-package = Core - required
+package = Core
version = VERSION
core = 7.x
files[] = system.module
diff --git a/modules/system/system.test b/modules/system/system.test
index 29b4e73eb..52c51db72 100644
--- a/modules/system/system.test
+++ b/modules/system/system.test
@@ -35,7 +35,7 @@ class EnableDisableCoreTestCase extends DrupalWebTestCase {
$this->assertTableCount('aggregator', FALSE);
$edit = array();
- $edit['modules[Core - optional][aggregator][enable]'] = 'aggregator';
+ $edit['modules[Core][aggregator][enable]'] = 'aggregator';
$this->drupalPost('admin/build/modules', $edit, t('Save configuration'));
$this->assertText(t('The configuration options have been saved.'), t('Modules status has been updated.'));
@@ -44,7 +44,7 @@ class EnableDisableCoreTestCase extends DrupalWebTestCase {
// Disable aggregator, check tables, uninstall aggregator, check tables.
$edit = array();
- $edit['modules[Core - optional][aggregator][enable]'] = FALSE;
+ $edit['modules[Core][aggregator][enable]'] = FALSE;
$this->drupalPost('admin/build/modules', $edit, t('Save configuration'));
$this->assertText(t('The configuration options have been saved.'), t('Modules status has been updated.'));
@@ -68,7 +68,7 @@ class EnableDisableCoreTestCase extends DrupalWebTestCase {
function testEnableWithoutDependency () {
// Attempt to enable content translation without locale enabled.
$edit = array();
- $edit['modules[Core - optional][translation][enable]'] = 'translation';
+ $edit['modules[Core][translation][enable]'] = 'translation';
$this->drupalPost('admin/build/modules', $edit, t('Save configuration'));
$this->assertText(t('Some required modules must be enabled'), t('Dependecy required.'));