Skip to content
Snippets Groups Projects
Commit e218e24a authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Rollback of #631486 (wrong incomplete commit)

parent a6ae1c6c
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -64,12 +64,12 @@ function _field_info_collate_types($reset = FALSE) {
if ($reset) {
$info = NULL;
cache_clear_all('field_info_types', 'cache_bootstrap');
cache_clear_all('field_info_types', 'cache_field');
return;
}
if (!isset($info)) {
if ($cached = cache_get('field_info_types', 'cache_bootstrap')) {
if ($cached = cache_get('field_info_types', 'cache_field')) {
$info = $cached->data;
}
else {
......@@ -137,7 +137,7 @@ function _field_info_collate_types($reset = FALSE) {
}
drupal_alter('field_storage_info', $info['storage types']);
cache_set('field_info_types', $info, 'cache_bootstrap');
cache_set('field_info_types', $info, 'cache_field');
}
}
......@@ -168,12 +168,12 @@ function _field_info_collate_fields($reset = FALSE) {
if ($reset) {
$info = NULL;
cache_clear_all('field_info_fields', 'cache_field_bootstrap');
cache_clear_all('field_info_fields', 'cache_field');
return;
}
if (!isset($info)) {
if ($cached = cache_get('field_info_fields', 'cache_bootstrap')) {
if ($cached = cache_get('field_info_fields', 'cache_field')) {
$definitions = $cached->data;
}
else {
......@@ -181,7 +181,7 @@ function _field_info_collate_fields($reset = FALSE) {
'field_ids' => field_read_fields(array(), array('include_deleted' => 1)),
'instances' => field_read_instances(),
);
cache_set('field_info_fields', $definitions, 'cache_bootstrap');
cache_set('field_info_fields', $definitions, 'cache_field');
}
// Populate 'field_ids' with all fields.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment