updated core to 7.73
This commit is contained in:
@@ -12,7 +12,7 @@ files[] = system.test
|
||||
required = TRUE
|
||||
configure = admin/config/system
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-12-18
|
||||
version = "7.69"
|
||||
; Information added by Drupal.org packaging script on 2020-09-16
|
||||
version = "7.73"
|
||||
project = "drupal"
|
||||
datestamp = "1576696221"
|
||||
datestamp = "1600272641"
|
||||
|
@@ -3292,6 +3292,20 @@ function system_update_7082() {
|
||||
// Empty update to force a rebuild of hook_library() and JS aggregates.
|
||||
}
|
||||
|
||||
/**
|
||||
* Add 'jquery-html-prefilter-3.5.0-backport.js' to the 'jquery' library.
|
||||
*/
|
||||
function system_update_7083() {
|
||||
// Empty update to force a rebuild of hook_library() and JS aggregates.
|
||||
}
|
||||
|
||||
/**
|
||||
* Rebuild JavaScript aggregates to include 'ajax.js' fix for Chrome 83.
|
||||
*/
|
||||
function system_update_7084() {
|
||||
// Empty update to force a rebuild of JS aggregates.
|
||||
}
|
||||
|
||||
/**
|
||||
* @} End of "defgroup updates-7.x-extra".
|
||||
* The next series of updates should start at 8000.
|
||||
|
@@ -1186,9 +1186,10 @@ function system_library() {
|
||||
'version' => '1.4.4',
|
||||
'js' => array(
|
||||
'misc/jquery.js' => array('group' => JS_LIBRARY, 'weight' => -20),
|
||||
// This includes a security fix, so assign a weight that makes this load
|
||||
// These include security fixes, so assign a weight that makes them load
|
||||
// as soon after jquery.js is loaded as possible.
|
||||
'misc/jquery-extend-3.4.0.js' => array('group' => JS_LIBRARY, 'weight' => -19),
|
||||
'misc/jquery-html-prefilter-3.5.0-backport.js' => array('group' => JS_LIBRARY, 'weight' => -19),
|
||||
),
|
||||
);
|
||||
|
||||
|
@@ -2995,7 +2995,16 @@ class SystemValidTokenTest extends DrupalUnitTestCase {
|
||||
// The following checks will throw PHP notices, so we disable error
|
||||
// assertions.
|
||||
$this->assertErrors = FALSE;
|
||||
$this->assertFalse(drupal_valid_token(NULL, new stdClass()), 'Token NULL, value object returns FALSE.');
|
||||
|
||||
try {
|
||||
$this->assertFalse(drupal_valid_token(NULL, new stdClass()), 'Token NULL, value object returns FALSE.');
|
||||
}
|
||||
// PHP 7.4 compatibility: the stdClass string conversion throws an exception
|
||||
// which is also an acceptable outcome of this test.
|
||||
catch (Error $e) {
|
||||
$this->pass('Token NULL, value object throws error exception which is ok.');
|
||||
}
|
||||
|
||||
$this->assertFalse(drupal_valid_token(0, array()), 'Token 0, value array returns FALSE.');
|
||||
$this->assertFalse(drupal_valid_token('', array()), "Token '', value array returns FALSE.");
|
||||
$this->assertFalse('' === drupal_get_token(array()), 'Token generation does not return an empty string on invalid parameters.');
|
||||
|
@@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-12-18
|
||||
version = "7.69"
|
||||
; Information added by Drupal.org packaging script on 2020-09-16
|
||||
version = "7.73"
|
||||
project = "drupal"
|
||||
datestamp = "1576696221"
|
||||
datestamp = "1600272641"
|
||||
|
@@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-12-18
|
||||
version = "7.69"
|
||||
; Information added by Drupal.org packaging script on 2020-09-16
|
||||
version = "7.73"
|
||||
project = "drupal"
|
||||
datestamp = "1576696221"
|
||||
datestamp = "1600272641"
|
||||
|
Reference in New Issue
Block a user