updated core to 7.65

This commit is contained in:
2019-03-28 10:59:04 +01:00
parent b764ef206e
commit 6fb9e4806d
1057 changed files with 578 additions and 494 deletions

2
modules/file/file.field.inc Executable file → Normal file
View File

@@ -599,7 +599,7 @@ function file_field_widget_value($element, $input = FALSE, $form_state) {
// If the display field is present make sure its unchecked value is saved.
$field = field_widget_field($element, $form_state);
if (empty($input['display'])) {
$input['display'] = $field['settings']['display_field'] ? 0 : 1;
$input['display'] = !empty($field['settings']['display_field']) ? 0 : 1;
}
}