#57864, required modules shoudl not be throttled, patch by Markus Petrux
parent
8e1e221e30
commit
a6cb8d7adb
|
@ -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'));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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'));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue