Update Drupal 7 dependencies

This commit is contained in:
Mauricio Dinarte 2025-06-03 10:37:00 -06:00 committed by Janez Urevc
parent 7d902ba1ef
commit 13df912654
391 changed files with 2900 additions and 1502 deletions

View file

@ -15,6 +15,11 @@ define('DRUPAL_MAXIMUM_TEMP_FILE_AGE', 21600);
*/
define('DRUPAL_CRON_DEFAULT_THRESHOLD', 10800);
/**
* Detailed cron logging disabled by default.
*/
define('DRUPAL_CRON_DETAILED_LOGGING', 0);
/**
* New users will be set to the default time zone at registration.
*/
@ -4134,3 +4139,11 @@ function system_file_download($uri) {
}
}
}
/**
* Implements hook_registry_files_alter
*/
function system_registry_files_alter(&$files, $modules) {
// Database drivers that use DatabaseStatementPrefetch must include this file.
unset($files['includes/database/prefetch.inc']);
}