updated core to 7.67
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-01-16
|
||||
version = "7.63"
|
||||
; Information added by Drupal.org packaging script on 2019-05-08
|
||||
version = "7.67"
|
||||
project = "drupal"
|
||||
datestamp = "1547681965"
|
||||
datestamp = "1557336079"
|
||||
|
@@ -2870,7 +2870,7 @@ function system_update_7061(&$sandbox) {
|
||||
if (!db_table_exists('system_update_7061')) {
|
||||
$table = array(
|
||||
'description' => t('Stores temporary data for system_update_7061.'),
|
||||
'fields' => array('vid' => array('type' => 'int')),
|
||||
'fields' => array('vid' => array('type' => 'int', 'not null' => TRUE)),
|
||||
'primary key' => array('vid'),
|
||||
);
|
||||
db_create_table('system_update_7061', $table);
|
||||
@@ -3285,6 +3285,13 @@ function system_update_7081() {
|
||||
->execute();
|
||||
}
|
||||
|
||||
/**
|
||||
* Add 'jquery-extend-3.4.0.js' to the 'jquery' library.
|
||||
*/
|
||||
function system_update_7082() {
|
||||
// Empty update to force a rebuild of hook_library() and JS aggregates.
|
||||
}
|
||||
|
||||
/**
|
||||
* @} End of "defgroup updates-7.x-extra".
|
||||
* The next series of updates should start at 8000.
|
||||
|
@@ -1182,6 +1182,9 @@ 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
|
||||
// as soon after jquery.js is loaded as possible.
|
||||
'misc/jquery-extend-3.4.0.js' => array('group' => JS_LIBRARY, 'weight' => -19),
|
||||
),
|
||||
);
|
||||
|
||||
|
@@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-01-16
|
||||
version = "7.63"
|
||||
; Information added by Drupal.org packaging script on 2019-05-08
|
||||
version = "7.67"
|
||||
project = "drupal"
|
||||
datestamp = "1547681965"
|
||||
datestamp = "1557336079"
|
||||
|
@@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-01-16
|
||||
version = "7.63"
|
||||
; Information added by Drupal.org packaging script on 2019-05-08
|
||||
version = "7.67"
|
||||
project = "drupal"
|
||||
datestamp = "1547681965"
|
||||
datestamp = "1557336079"
|
||||
|
Reference in New Issue
Block a user