Skip to content

Commit c7cc392

Browse files
Pantheon Automationgreg-1-anderson
authored andcommitted
Update to Drupal 7.88. For more information, see https://www.drupal.org/project/drupal/releases/7.88
1 parent 01b3c2d commit c7cc392

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Drupal 7.88, 2022-02-15
2+
-----------------------
3+
- Fixed security issues:
4+
- SA-CORE-2022-003
5+
16
Drupal 7.87, 2022-01-19
27
-----------------------
38
- Fix regression caused by jQuery UI position() backport

includes/bootstrap.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* The current system version.
1010
*/
11-
define('VERSION', '7.87');
11+
define('VERSION', '7.88');
1212

1313
/**
1414
* Core API compatibility.

includes/form.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2087,7 +2087,7 @@ function _form_builder_handle_input_element($form_id, &$element, &$form_state) {
20872087
// #access=FALSE on an element usually allow access for some users, so forms
20882088
// submitted with drupal_form_submit() may bypass access restriction and be
20892089
// treated as high-privilege users instead.
2090-
$process_input = empty($element['#disabled']) && (($form_state['programmed'] && $form_state['programmed_bypass_access_check']) || ($form_state['process_input'] && (!isset($element['#access']) || $element['#access'])));
2090+
$process_input = empty($element['#disabled']) && ($element['#type'] !== 'value') && (($form_state['programmed'] && $form_state['programmed_bypass_access_check']) || ($form_state['process_input'] && (!isset($element['#access']) || $element['#access'])));
20912091

20922092
// Set the element's #value property.
20932093
if (!isset($element['#value']) && !array_key_exists('#value', $element)) {

0 commit comments

Comments
 (0)