updated core to 7.66
This commit is contained in:
parent
f6e72bbe19
commit
b2fe2731c2
@ -1,6 +1,11 @@
|
||||
Drupal 7.xx, xxxx-xx-xx (development version)
|
||||
-----------------------
|
||||
|
||||
Drupal 7.66, 2019-04-17
|
||||
-----------------------
|
||||
- Fixed security issues:
|
||||
- SA-CORE-2019-006
|
||||
|
||||
Drupal 7.65, 2019-03-20
|
||||
-----------------------
|
||||
- Fixed security issues:
|
||||
|
@ -1,10 +0,0 @@
|
||||
{
|
||||
"require": {
|
||||
"drush/drush": "8.*"
|
||||
},
|
||||
"extra": {
|
||||
"installer-paths": {
|
||||
"core": ["type:drupal-core"]
|
||||
}
|
||||
}
|
||||
}
|
1265
composer.lock
generated
1265
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@ -8,7 +8,7 @@
|
||||
/**
|
||||
* The current system version.
|
||||
*/
|
||||
define('VERSION', '7.65');
|
||||
define('VERSION', '7.66');
|
||||
|
||||
/**
|
||||
* Core API compatibility.
|
||||
|
112
misc/jquery-extend-3.4.0.js
Normal file
112
misc/jquery-extend-3.4.0.js
Normal file
@ -0,0 +1,112 @@
|
||||
/**
|
||||
* For jQuery versions less than 3.4.0, this replaces the jQuery.extend
|
||||
* function with the one from jQuery 3.4.0, slightly modified (documented
|
||||
* below) to be compatible with older jQuery versions and browsers.
|
||||
*
|
||||
* This provides the Object.prototype pollution vulnerability fix to Drupal
|
||||
* installations running older jQuery versions, including the versions shipped
|
||||
* with Drupal core and https://www.drupal.org/project/jquery_update.
|
||||
*
|
||||
* @see https://github.com/jquery/jquery/pull/4333
|
||||
*/
|
||||
|
||||
(function (jQuery) {
|
||||
|
||||
// Do not override jQuery.extend() if the jQuery version is already >=3.4.0.
|
||||
var versionParts = jQuery.fn.jquery.split('.');
|
||||
var majorVersion = parseInt(versionParts[0]);
|
||||
var minorVersion = parseInt(versionParts[1]);
|
||||
var patchVersion = parseInt(versionParts[2]);
|
||||
var isPreReleaseVersion = (patchVersion.toString() !== versionParts[2]);
|
||||
if (
|
||||
(majorVersion > 3) ||
|
||||
(majorVersion === 3 && minorVersion > 4) ||
|
||||
(majorVersion === 3 && minorVersion === 4 && patchVersion > 0) ||
|
||||
(majorVersion === 3 && minorVersion === 4 && patchVersion === 0 && !isPreReleaseVersion)
|
||||
) {
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
* This is almost verbatim copied from jQuery 3.4.0.
|
||||
*
|
||||
* Only two minor changes have been made:
|
||||
* - The call to isFunction() is changed to jQuery.isFunction().
|
||||
* - The two calls to Array.isArray() is changed to jQuery.isArray().
|
||||
*
|
||||
* The above two changes ensure compatibility with all older jQuery versions
|
||||
* (1.4.4 - 3.3.1) and older browser versions (e.g., IE8).
|
||||
*/
|
||||
jQuery.extend = jQuery.fn.extend = function() {
|
||||
var options, name, src, copy, copyIsArray, clone,
|
||||
target = arguments[ 0 ] || {},
|
||||
i = 1,
|
||||
length = arguments.length,
|
||||
deep = false;
|
||||
|
||||
// Handle a deep copy situation
|
||||
if ( typeof target === "boolean" ) {
|
||||
deep = target;
|
||||
|
||||
// Skip the boolean and the target
|
||||
target = arguments[ i ] || {};
|
||||
i++;
|
||||
}
|
||||
|
||||
// Handle case when target is a string or something (possible in deep copy)
|
||||
if ( typeof target !== "object" && !jQuery.isFunction( target ) ) {
|
||||
target = {};
|
||||
}
|
||||
|
||||
// Extend jQuery itself if only one argument is passed
|
||||
if ( i === length ) {
|
||||
target = this;
|
||||
i--;
|
||||
}
|
||||
|
||||
for ( ; i < length; i++ ) {
|
||||
|
||||
// Only deal with non-null/undefined values
|
||||
if ( ( options = arguments[ i ] ) != null ) {
|
||||
|
||||
// Extend the base object
|
||||
for ( name in options ) {
|
||||
copy = options[ name ];
|
||||
|
||||
// Prevent Object.prototype pollution
|
||||
// Prevent never-ending loop
|
||||
if ( name === "__proto__" || target === copy ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Recurse if we're merging plain objects or arrays
|
||||
if ( deep && copy && ( jQuery.isPlainObject( copy ) ||
|
||||
( copyIsArray = jQuery.isArray( copy ) ) ) ) {
|
||||
src = target[ name ];
|
||||
|
||||
// Ensure proper type for the source value
|
||||
if ( copyIsArray && !jQuery.isArray( src ) ) {
|
||||
clone = [];
|
||||
} else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {
|
||||
clone = {};
|
||||
} else {
|
||||
clone = src;
|
||||
}
|
||||
copyIsArray = false;
|
||||
|
||||
// Never move original objects, clone them
|
||||
target[ name ] = jQuery.extend( deep, clone, copy );
|
||||
|
||||
// Don't bring in undefined values
|
||||
} else if ( copy !== undefined ) {
|
||||
target[ name ] = copy;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Return the modified object
|
||||
return target;
|
||||
};
|
||||
|
||||
})(jQuery);
|
@ -7,7 +7,7 @@ files[] = aggregator.test
|
||||
configure = admin/config/services/aggregator/settings
|
||||
stylesheets[all][] = aggregator.css
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ core = 7.x
|
||||
files[] = block.test
|
||||
configure = admin/structure/block
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -13,7 +13,7 @@ regions[footer] = Footer
|
||||
regions[highlighted] = Highlighted
|
||||
regions[help] = Help
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
files[] = blog.test
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -7,7 +7,7 @@ files[] = book.test
|
||||
configure = admin/content/book/settings
|
||||
stylesheets[all][] = book.css
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
files[] = color.test
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -9,7 +9,7 @@ files[] = comment.test
|
||||
configure = admin/content/comment
|
||||
stylesheets[all][] = comment.css
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ core = 7.x
|
||||
files[] = contact.test
|
||||
configure = admin/structure/contact
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
files[] = contextual.test
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -7,7 +7,7 @@ files[] = dashboard.test
|
||||
dependencies[] = block
|
||||
configure = admin/dashboard/customize
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
files[] = dblog.test
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -11,7 +11,7 @@ dependencies[] = field_sql_storage
|
||||
required = TRUE
|
||||
stylesheets[all][] = theme/field.css
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -7,7 +7,7 @@ dependencies[] = field
|
||||
files[] = field_sql_storage.test
|
||||
required = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -7,7 +7,7 @@ dependencies[] = field
|
||||
dependencies[] = options
|
||||
files[] = tests/list.test
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ package = Testing
|
||||
version = VERSION
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ core = 7.x
|
||||
dependencies[] = field
|
||||
files[] = number.test
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ core = 7.x
|
||||
dependencies[] = field
|
||||
files[] = options.test
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -7,7 +7,7 @@ dependencies[] = field
|
||||
files[] = text.test
|
||||
required = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ files[] = field_test.entity.inc
|
||||
version = VERSION
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ core = 7.x
|
||||
dependencies[] = field
|
||||
files[] = field_ui.test
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ core = 7.x
|
||||
dependencies[] = field
|
||||
files[] = tests/file.test
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -7,7 +7,7 @@ files[] = filter.test
|
||||
required = TRUE
|
||||
configure = admin/config/content/formats
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -9,7 +9,7 @@ files[] = forum.test
|
||||
configure = admin/structure/forum
|
||||
stylesheets[all][] = forum.css
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
files[] = help.test
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -7,7 +7,7 @@ dependencies[] = file
|
||||
files[] = image.test
|
||||
configure = admin/config/media/image-styles
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ core = 7.x
|
||||
files[] = image_module_test.module
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ core = 7.x
|
||||
files[] = locale.test
|
||||
configure = admin/config/regional/language
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ package = Testing
|
||||
version = VERSION
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ core = 7.x
|
||||
files[] = menu.test
|
||||
configure = admin/structure/menu
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -9,7 +9,7 @@ required = TRUE
|
||||
configure = admin/structure/types
|
||||
stylesheets[all][] = node.css
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ package = Core
|
||||
core = 7.x
|
||||
files[] = openid.test
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ core = 7.x
|
||||
dependencies[] = openid
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -4,7 +4,7 @@ package = Core
|
||||
version = VERSION
|
||||
core = 7.x
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ core = 7.x
|
||||
files[] = path.test
|
||||
configure = admin/config/search/path
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
files[] = php.test
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ core = 7.x
|
||||
files[] = poll.test
|
||||
stylesheets[all][] = poll.css
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -11,7 +11,7 @@ configure = admin/config/people/profile
|
||||
; See user_system_info_alter().
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
files[] = rdf.test
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ core = 7.x
|
||||
hidden = TRUE
|
||||
dependencies[] = blog
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -8,7 +8,7 @@ files[] = search.test
|
||||
configure = admin/config/search/settings
|
||||
stylesheets[all][] = search.css
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ core = 7.x
|
||||
files[] = shortcut.test
|
||||
configure = admin/config/user-interface/shortcut
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -57,7 +57,7 @@ files[] = tests/upgrade/update.trigger.test
|
||||
files[] = tests/upgrade/update.field.test
|
||||
files[] = tests/upgrade/update.user.test
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ package = Testing
|
||||
version = VERSION
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ package = Testing
|
||||
version = VERSION
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ package = Testing
|
||||
version = VERSION
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -7,7 +7,7 @@ stylesheets[all][] = common_test.css
|
||||
stylesheets[print][] = common_test.print.css
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ package = Testing
|
||||
version = VERSION
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -7,7 +7,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ core = 7.x
|
||||
dependencies[] = entity_cache_test_dependency
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ package = Testing
|
||||
version = VERSION
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ core = 7.x
|
||||
files[] = file_test.module
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ core = 7.x
|
||||
hidden = TRUE
|
||||
package = Testing
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ core = 7.x
|
||||
hidden = TRUE
|
||||
package = Testing
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -7,7 +7,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ core = 7.x
|
||||
hidden = TRUE
|
||||
dependencies[] = _missing_dependency
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ core = 7.x
|
||||
hidden = TRUE
|
||||
dependencies[] = system_incompatible_core_version_test
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 5.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -7,7 +7,7 @@ hidden = TRUE
|
||||
; system_incompatible_module_version_test declares version 1.0
|
||||
dependencies[] = system_incompatible_module_version_test (>2.0)
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = 1.0
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ core = 7.x
|
||||
hidden = TRUE
|
||||
dependencies[] = drupal:filter
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ core = 7.x
|
||||
files[] = system_test.module
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ core = 7.x
|
||||
hidden = TRUE
|
||||
dependencies[] = taxonomy
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ hidden = TRUE
|
||||
settings[basetheme_only] = base theme value
|
||||
settings[subtheme_override] = base theme value
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -6,7 +6,7 @@ hidden = TRUE
|
||||
|
||||
settings[subtheme_override] = subtheme value
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -17,7 +17,7 @@ stylesheets[all][] = system.base.css
|
||||
|
||||
settings[theme_test_setting] = default value
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -4,7 +4,7 @@ core = 7.x
|
||||
hidden = TRUE
|
||||
engine = nyan_cat
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
@ -5,7 +5,7 @@ version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2019-03-20
|
||||
version = "7.65"
|
||||
; Information added by Drupal.org packaging script on 2019-04-17
|
||||
version = "7.66"
|
||||
project = "drupal"
|
||||
datestamp = "1553100118"
|
||||
datestamp = "1555533576"
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user