mirror of
https://github.com/tag1consulting/d7_to_d10_migration.git
synced 2025-09-09 01:31:22 +00:00
Update Drupal 7 dependencies
This commit is contained in:
parent
7d902ba1ef
commit
13df912654
391 changed files with 2900 additions and 1502 deletions
|
@ -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']);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue