summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org>2006-04-08 16:05:54 +0000
committerGerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org>2006-04-08 16:05:54 +0000
commita6cb8d7adb6f0b3b2c32855821df403616c77065 (patch)
treed9d06669abcb20c9569c1b928e229022c97b38b6 /modules
parent8e1e221e3075f13e007f375201a32abf09779faa (diff)
downloadbrdo-a6cb8d7adb6f0b3b2c32855821df403616c77065.tar.gz
brdo-a6cb8d7adb6f0b3b2c32855821df403616c77065.tar.bz2
#57864, required modules shoudl not be throttled, patch by Markus Petrux
Diffstat (limited to 'modules')
-rw-r--r--modules/system.module2
-rw-r--r--modules/system/system.module2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/system.module b/modules/system.module
index acbc581a1..5ec446ad3 100644
--- a/modules/system.module
+++ b/modules/system.module
@@ -936,7 +936,7 @@ function system_modules() {
$form['throttle'] = array('#type' => 'checkboxes', '#default_value' => $throttle, '#options' => $options);
$throttle_required = array_merge($required, array('throttle'));
foreach ($throttle_required as $require) {
- $form['throttle'][$require] = array('#type' => 'hidden', '#value' => 1, '#suffix' => t('required'));
+ $form['throttle'][$require] = array('#type' => 'hidden', '#value' => 0, '#suffix' => t('required'));
}
}
diff --git a/modules/system/system.module b/modules/system/system.module
index acbc581a1..5ec446ad3 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -936,7 +936,7 @@ function system_modules() {
$form['throttle'] = array('#type' => 'checkboxes', '#default_value' => $throttle, '#options' => $options);
$throttle_required = array_merge($required, array('throttle'));
foreach ($throttle_required as $require) {
- $form['throttle'][$require] = array('#type' => 'hidden', '#value' => 1, '#suffix' => t('required'));
+ $form['throttle'][$require] = array('#type' => 'hidden', '#value' => 0, '#suffix' => t('required'));
}
}