Update Drupal 7 to 7.105

@see https://gitlab.com/tag1consulting/public/drupal/-/releases/7.105
This commit is contained in:
Mauricio Dinarte 2025-11-13 12:30:02 -06:00 committed by Janez Urevc
parent c76979e3d5
commit fb9ad88a0f
160 changed files with 276 additions and 782 deletions

View file

@ -639,6 +639,41 @@ $conf['404_fast_html'] = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
*/
# $conf['allow_authorize_operations'] = FALSE;
/**
* Trusted host configuration.
*
* Drupal can attempt to prevent HTTP Host header spoofing.
*
* To enable the trusted host mechanism, you enable your allowable hosts in
* $conf['trusted_host_patterns']. This should be an array of regular expression
* patterns, without delimiters, representing the hosts you would like to allow.
*
* For example, this code will allow the site to only run from www.example.com.
*
* @code
* $conf['trusted_host_patterns'] = array(
* '^www\.example\.com$',
* );
* @endcode
*
* If you are running multisite, or if you are running your site from different
* domain names (for example, you don't redirect http://www.example.com to
* http://example.com), you should specify all of the host patterns that are
* allowed by your site.
*
* For example, this code will allow the site to run off of all variants of
* example.com and example.org, with all subdomains included.
*
* @code
* $conf['trusted_host_patterns'] = array(
* '^example\.com$',
* '^.+\.example\.com$',
* '^example\.org',
* '^.+\.example\.org',
* );
* @endcode
*/
/**
* Theme debugging:
*
@ -886,3 +921,12 @@ $conf['mail_display_name_site_name'] = TRUE;
* prevention and revert to the original behaviour.
*/
# $conf['javascript_use_double_submit_protection'] = FALSE;
/**
* Cron logging.
*
* Optionally drupal_cron_run() can log each execution of hook_cron() together
* with the execution time. This is disabled by default to reduce log noise. Set
* this variable to TRUE in order to enable the additional logging.
*/
# $conf['cron_logging_enabled'] = TRUE;