Drupal: Update update core 7.73
This commit is contained in:
parent
ad462cc943
commit
2bcb95726b
@ -1,3 +1,8 @@
|
|||||||
|
Drupal 7.73, 2020-09-16
|
||||||
|
-----------------------
|
||||||
|
- Fixed security issues:
|
||||||
|
- SA-CORE-2020-007
|
||||||
|
|
||||||
Drupal 7.72, 2020-06-17
|
Drupal 7.72, 2020-06-17
|
||||||
-----------------------
|
-----------------------
|
||||||
- Fixed security issues:
|
- Fixed security issues:
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
/**
|
/**
|
||||||
* The current system version.
|
* The current system version.
|
||||||
*/
|
*/
|
||||||
define('VERSION', '7.72');
|
define('VERSION', '7.73');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Core API compatibility.
|
* Core API compatibility.
|
||||||
|
@ -149,7 +149,7 @@ Drupal.ajax = function (base, element, element_settings) {
|
|||||||
// The 'this' variable will not persist inside of the options object.
|
// The 'this' variable will not persist inside of the options object.
|
||||||
var ajax = this;
|
var ajax = this;
|
||||||
ajax.options = {
|
ajax.options = {
|
||||||
url: ajax.url,
|
url: Drupal.sanitizeAjaxUrl(ajax.url),
|
||||||
data: ajax.submit,
|
data: ajax.submit,
|
||||||
beforeSerialize: function (element_settings, options) {
|
beforeSerialize: function (element_settings, options) {
|
||||||
return ajax.beforeSerialize(element_settings, options);
|
return ajax.beforeSerialize(element_settings, options);
|
||||||
@ -195,6 +195,7 @@ Drupal.ajax = function (base, element, element_settings) {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
dataType: 'json',
|
dataType: 'json',
|
||||||
|
jsonp: false,
|
||||||
type: 'POST'
|
type: 'POST'
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -297,8 +297,9 @@ Drupal.ACDB.prototype.search = function (searchString) {
|
|||||||
// encodeURIComponent to allow autocomplete search terms to contain slashes.
|
// encodeURIComponent to allow autocomplete search terms to contain slashes.
|
||||||
$.ajax({
|
$.ajax({
|
||||||
type: 'GET',
|
type: 'GET',
|
||||||
url: db.uri + '/' + Drupal.encodePath(searchString),
|
url: Drupal.sanitizeAjaxUrl(db.uri + '/' + Drupal.encodePath(searchString)),
|
||||||
dataType: 'json',
|
dataType: 'json',
|
||||||
|
jsonp: false,
|
||||||
success: function (matches) {
|
success: function (matches) {
|
||||||
if (typeof matches.status == 'undefined' || matches.status != 0) {
|
if (typeof matches.status == 'undefined' || matches.status != 0) {
|
||||||
db.cache[searchString] = matches;
|
db.cache[searchString] = matches;
|
||||||
|
@ -424,6 +424,23 @@ Drupal.urlIsLocal = function (url) {
|
|||||||
return absoluteUrl === baseUrl || absoluteUrl.indexOf(baseUrl + '/') === 0;
|
return absoluteUrl === baseUrl || absoluteUrl.indexOf(baseUrl + '/') === 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sanitizes a URL for use with jQuery.ajax().
|
||||||
|
*
|
||||||
|
* @param url
|
||||||
|
* The URL string to be sanitized.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* The sanitized URL.
|
||||||
|
*/
|
||||||
|
Drupal.sanitizeAjaxUrl = function (url) {
|
||||||
|
var regex = /\=\?(&|$)/;
|
||||||
|
while (url.match(regex)) {
|
||||||
|
url = url.replace(regex, '');
|
||||||
|
}
|
||||||
|
return url;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generate the themed representation of a Drupal object.
|
* Generate the themed representation of a Drupal object.
|
||||||
*
|
*
|
||||||
|
@ -7,7 +7,7 @@ files[] = aggregator.test
|
|||||||
configure = admin/config/services/aggregator/settings
|
configure = admin/config/services/aggregator/settings
|
||||||
stylesheets[all][] = aggregator.css
|
stylesheets[all][] = aggregator.css
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ core = 7.x
|
|||||||
files[] = block.test
|
files[] = block.test
|
||||||
configure = admin/structure/block
|
configure = admin/structure/block
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -13,7 +13,7 @@ regions[footer] = Footer
|
|||||||
regions[highlighted] = Highlighted
|
regions[highlighted] = Highlighted
|
||||||
regions[help] = Help
|
regions[help] = Help
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = blog.test
|
files[] = blog.test
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -7,7 +7,7 @@ files[] = book.test
|
|||||||
configure = admin/content/book/settings
|
configure = admin/content/book/settings
|
||||||
stylesheets[all][] = book.css
|
stylesheets[all][] = book.css
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = color.test
|
files[] = color.test
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -9,7 +9,7 @@ files[] = comment.test
|
|||||||
configure = admin/content/comment
|
configure = admin/content/comment
|
||||||
stylesheets[all][] = comment.css
|
stylesheets[all][] = comment.css
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ core = 7.x
|
|||||||
files[] = contact.test
|
files[] = contact.test
|
||||||
configure = admin/structure/contact
|
configure = admin/structure/contact
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = contextual.test
|
files[] = contextual.test
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -7,7 +7,7 @@ files[] = dashboard.test
|
|||||||
dependencies[] = block
|
dependencies[] = block
|
||||||
configure = admin/dashboard/customize
|
configure = admin/dashboard/customize
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = dblog.test
|
files[] = dblog.test
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -11,7 +11,7 @@ dependencies[] = field_sql_storage
|
|||||||
required = TRUE
|
required = TRUE
|
||||||
stylesheets[all][] = theme/field.css
|
stylesheets[all][] = theme/field.css
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -7,7 +7,7 @@ dependencies[] = field
|
|||||||
files[] = field_sql_storage.test
|
files[] = field_sql_storage.test
|
||||||
required = TRUE
|
required = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -7,7 +7,7 @@ dependencies[] = field
|
|||||||
dependencies[] = options
|
dependencies[] = options
|
||||||
files[] = tests/list.test
|
files[] = tests/list.test
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ core = 7.x
|
|||||||
dependencies[] = field
|
dependencies[] = field
|
||||||
files[] = number.test
|
files[] = number.test
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ core = 7.x
|
|||||||
dependencies[] = field
|
dependencies[] = field
|
||||||
files[] = options.test
|
files[] = options.test
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -7,7 +7,7 @@ dependencies[] = field
|
|||||||
files[] = text.test
|
files[] = text.test
|
||||||
required = TRUE
|
required = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ files[] = field_test.entity.inc
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ core = 7.x
|
|||||||
dependencies[] = field
|
dependencies[] = field
|
||||||
files[] = field_ui.test
|
files[] = field_ui.test
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ core = 7.x
|
|||||||
dependencies[] = field
|
dependencies[] = field
|
||||||
files[] = tests/file.test
|
files[] = tests/file.test
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -7,7 +7,7 @@ files[] = filter.test
|
|||||||
required = TRUE
|
required = TRUE
|
||||||
configure = admin/config/content/formats
|
configure = admin/config/content/formats
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -9,7 +9,7 @@ files[] = forum.test
|
|||||||
configure = admin/structure/forum
|
configure = admin/structure/forum
|
||||||
stylesheets[all][] = forum.css
|
stylesheets[all][] = forum.css
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = help.test
|
files[] = help.test
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -7,7 +7,7 @@ dependencies[] = file
|
|||||||
files[] = image.test
|
files[] = image.test
|
||||||
configure = admin/config/media/image-styles
|
configure = admin/config/media/image-styles
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ core = 7.x
|
|||||||
files[] = image_module_test.module
|
files[] = image_module_test.module
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ core = 7.x
|
|||||||
files[] = locale.test
|
files[] = locale.test
|
||||||
configure = admin/config/regional/language
|
configure = admin/config/regional/language
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -59,14 +59,6 @@ function menu_overview_form($form, &$form_state, $menu) {
|
|||||||
foreach ($result as $item) {
|
foreach ($result as $item) {
|
||||||
$links[] = $item;
|
$links[] = $item;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 1KA iskanje
|
|
||||||
*/
|
|
||||||
$link_count = db_query("SELECT COUNT(*) AS counter FROM {menu_links} WHERE menu_name = :menu AND link_path NOT LIKE :link_path", array(':menu' => $menu['menu_name'], ':link_path' => '%\%%'))->fetchObject();
|
|
||||||
$counter = intval($link_count->counter / 2 ) + 1;
|
|
||||||
|
|
||||||
|
|
||||||
$tree = menu_tree_data($links);
|
$tree = menu_tree_data($links);
|
||||||
$node_links = array();
|
$node_links = array();
|
||||||
menu_tree_collect_node_links($tree, $node_links);
|
menu_tree_collect_node_links($tree, $node_links);
|
||||||
@ -75,12 +67,7 @@ function menu_overview_form($form, &$form_state, $menu) {
|
|||||||
menu_tree_check_access($tree, $node_links);
|
menu_tree_check_access($tree, $node_links);
|
||||||
$menu_admin = FALSE;
|
$menu_admin = FALSE;
|
||||||
|
|
||||||
/**
|
$form = array_merge($form, _menu_overview_tree_form($tree));
|
||||||
* 1KA menu
|
|
||||||
*/
|
|
||||||
$delta = _menu_get_menu_weight_delta($menu['menu_name'], $counter);
|
|
||||||
$form = array_merge($form, _menu_overview_tree_form($tree, $delta));
|
|
||||||
|
|
||||||
$form['#menu'] = $menu;
|
$form['#menu'] = $menu;
|
||||||
|
|
||||||
if (element_children($form)) {
|
if (element_children($form)) {
|
||||||
@ -100,10 +87,9 @@ function menu_overview_form($form, &$form_state, $menu) {
|
|||||||
* Recursive helper function for menu_overview_form().
|
* Recursive helper function for menu_overview_form().
|
||||||
*
|
*
|
||||||
* @param $tree
|
* @param $tree
|
||||||
* * @param $delta
|
* The menu_tree retrieved by menu_tree_data.
|
||||||
* The number of items to use in the menu weight selector. Defaults to 50.
|
|
||||||
*/
|
*/
|
||||||
function _menu_overview_tree_form($tree, $delta = 50) {
|
function _menu_overview_tree_form($tree) {
|
||||||
$form = &drupal_static(__FUNCTION__, array('#tree' => TRUE));
|
$form = &drupal_static(__FUNCTION__, array('#tree' => TRUE));
|
||||||
foreach ($tree as $data) {
|
foreach ($tree as $data) {
|
||||||
$title = '';
|
$title = '';
|
||||||
@ -129,7 +115,7 @@ function _menu_overview_tree_form($tree, $delta = 50) {
|
|||||||
);
|
);
|
||||||
$form[$mlid]['weight'] = array(
|
$form[$mlid]['weight'] = array(
|
||||||
'#type' => 'weight',
|
'#type' => 'weight',
|
||||||
'#delta' => $delta,
|
'#delta' => 50,
|
||||||
'#default_value' => $item['weight'],
|
'#default_value' => $item['weight'],
|
||||||
'#title_display' => 'invisible',
|
'#title_display' => 'invisible',
|
||||||
'#title' => t('Weight for @title', array('@title' => $item['title'])),
|
'#title' => t('Weight for @title', array('@title' => $item['title'])),
|
||||||
@ -157,8 +143,7 @@ function _menu_overview_tree_form($tree, $delta = 50) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ($data['below']) {
|
if ($data['below']) {
|
||||||
# 1ka menu $delta
|
_menu_overview_tree_form($data['below']);
|
||||||
_menu_overview_tree_form($data['below'], $delta);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return $form;
|
return $form;
|
||||||
@ -373,25 +358,10 @@ function menu_edit_item($form, &$form_state, $type, $item, $menu) {
|
|||||||
'#description' => t('The maximum depth for a link and all its children is fixed at !maxdepth. Some menu links may not be available as parents if selecting them would exceed this limit.', array('!maxdepth' => MENU_MAX_DEPTH)),
|
'#description' => t('The maximum depth for a link and all its children is fixed at !maxdepth. Some menu links may not be available as parents if selecting them would exceed this limit.', array('!maxdepth' => MENU_MAX_DEPTH)),
|
||||||
'#attributes' => array('class' => array('menu-title-select')),
|
'#attributes' => array('class' => array('menu-title-select')),
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
|
||||||
* 1ka menu
|
|
||||||
*/
|
|
||||||
// Get number of items in all possible parent menus so the weight selector is sized appropriately.
|
|
||||||
$menu_names = array_keys(menu_get_menus());
|
|
||||||
$menu_options = array();
|
|
||||||
foreach ($menu_names as $menu_name) {
|
|
||||||
if (isset($options[$menu_name . ':0'])) {
|
|
||||||
$menu_options[] = $menu_name;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Make sure that we always have values in menu_options.
|
|
||||||
$menu_options = !empty($menu_options) ? $menu_options : $menu_names;
|
|
||||||
|
|
||||||
$form['weight'] = array(
|
$form['weight'] = array(
|
||||||
'#type' => 'weight',
|
'#type' => 'weight',
|
||||||
'#title' => t('Weight'),
|
'#title' => t('Weight'),
|
||||||
'#delta' => _menu_get_menu_weight_delta($menu_options),
|
'#delta' => 50,
|
||||||
'#default_value' => $item['weight'],
|
'#default_value' => $item['weight'],
|
||||||
'#description' => t('Optional. In the menu, the heavier links will sink and the lighter links will be positioned nearer the top.'),
|
'#description' => t('Optional. In the menu, the heavier links will sink and the lighter links will be positioned nearer the top.'),
|
||||||
);
|
);
|
||||||
|
@ -6,7 +6,7 @@ core = 7.x
|
|||||||
files[] = menu.test
|
files[] = menu.test
|
||||||
configure = admin/structure/menu
|
configure = admin/structure/menu
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -42,39 +42,6 @@ function menu_help($path, $arg) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Calculate weight's delta for a menu or group of menu options.
|
|
||||||
*
|
|
||||||
* @param string|array $menu_names
|
|
||||||
* Menu name or an array of menu names to caclulate its weight's delta.
|
|
||||||
* @param integer $max_delta
|
|
||||||
* Optional value, delta's maximum value.
|
|
||||||
*
|
|
||||||
* @return int
|
|
||||||
* Delta value for the given menu name or menu names.
|
|
||||||
*/
|
|
||||||
function _menu_get_menu_weight_delta($menu_names, $max_delta = NULL) {
|
|
||||||
|
|
||||||
if (is_string($menu_names)) {
|
|
||||||
$menu_names = array($menu_names);
|
|
||||||
}
|
|
||||||
|
|
||||||
$weight_info = db_query("SELECT MAX(weight) AS max_weight, MIN(weight) as min_weight FROM {menu_links} WHERE menu_name IN (:menu_names)", array(':menu_names' => $menu_names))->fetchObject();
|
|
||||||
|
|
||||||
$delta = max(abs($weight_info->min_weight), abs($weight_info->max_weight)) + 1;
|
|
||||||
|
|
||||||
// Honor max param, if given.
|
|
||||||
if (!is_null($max_delta) && $delta > $max_delta) {
|
|
||||||
$delta = $max_delta;
|
|
||||||
}
|
|
||||||
|
|
||||||
// At minimum use the old hardcoded value.
|
|
||||||
if ($delta < 50) {
|
|
||||||
$delta = 50;
|
|
||||||
}
|
|
||||||
return $delta;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Implements hook_permission().
|
* Implements hook_permission().
|
||||||
*/
|
*/
|
||||||
@ -735,22 +702,10 @@ function menu_form_node_form_alter(&$form, $form_state) {
|
|||||||
'#options' => $options,
|
'#options' => $options,
|
||||||
'#attributes' => array('class' => array('menu-parent-select')),
|
'#attributes' => array('class' => array('menu-parent-select')),
|
||||||
);
|
);
|
||||||
|
|
||||||
// Get number of items in all possible parent menus so the weight selector is sized appropriately.
|
|
||||||
$menu_names = array_keys(menu_get_menus());
|
|
||||||
$menu_options = array();
|
|
||||||
foreach ($menu_names as $menu_name) {
|
|
||||||
if (isset($options[$menu_name . ':0'])) {
|
|
||||||
$menu_options[] = $menu_name;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Make sure that we always have values in menu_options.
|
|
||||||
$menu_options = !empty($menu_options) ? $menu_options : $menu_names;
|
|
||||||
|
|
||||||
$form['menu']['link']['weight'] = array(
|
$form['menu']['link']['weight'] = array(
|
||||||
'#type' => 'weight',
|
'#type' => 'weight',
|
||||||
'#title' => t('Weight'),
|
'#title' => t('Weight'),
|
||||||
'#delta' => _menu_get_menu_weight_delta($menu_options),
|
'#delta' => 50,
|
||||||
'#default_value' => $link['weight'],
|
'#default_value' => $link['weight'],
|
||||||
'#description' => t('Menu links with smaller weights are displayed before links with larger weights.'),
|
'#description' => t('Menu links with smaller weights are displayed before links with larger weights.'),
|
||||||
);
|
);
|
||||||
|
@ -9,7 +9,7 @@ required = TRUE
|
|||||||
configure = admin/structure/types
|
configure = admin/structure/types
|
||||||
stylesheets[all][] = node.css
|
stylesheets[all][] = node.css
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ package = Core
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = openid.test
|
files[] = openid.test
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ core = 7.x
|
|||||||
dependencies[] = openid
|
dependencies[] = openid
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -4,7 +4,7 @@ package = Core
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
core = 7.x
|
core = 7.x
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ core = 7.x
|
|||||||
files[] = path.test
|
files[] = path.test
|
||||||
configure = admin/config/search/path
|
configure = admin/config/search/path
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = php.test
|
files[] = php.test
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ core = 7.x
|
|||||||
files[] = poll.test
|
files[] = poll.test
|
||||||
stylesheets[all][] = poll.css
|
stylesheets[all][] = poll.css
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -11,7 +11,7 @@ configure = admin/config/people/profile
|
|||||||
; See user_system_info_alter().
|
; See user_system_info_alter().
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = rdf.test
|
files[] = rdf.test
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ core = 7.x
|
|||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
dependencies[] = blog
|
dependencies[] = blog
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -8,7 +8,7 @@ files[] = search.test
|
|||||||
configure = admin/config/search/settings
|
configure = admin/config/search/settings
|
||||||
stylesheets[all][] = search.css
|
stylesheets[all][] = search.css
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ core = 7.x
|
|||||||
files[] = shortcut.test
|
files[] = shortcut.test
|
||||||
configure = admin/config/user-interface/shortcut
|
configure = admin/config/user-interface/shortcut
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -58,7 +58,7 @@ files[] = tests/upgrade/update.trigger.test
|
|||||||
files[] = tests/upgrade/update.field.test
|
files[] = tests/upgrade/update.field.test
|
||||||
files[] = tests/upgrade/update.user.test
|
files[] = tests/upgrade/update.user.test
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -7,7 +7,7 @@ stylesheets[all][] = common_test.css
|
|||||||
stylesheets[print][] = common_test.print.css
|
stylesheets[print][] = common_test.print.css
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -7,7 +7,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ core = 7.x
|
|||||||
dependencies[] = entity_cache_test_dependency
|
dependencies[] = entity_cache_test_dependency
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ core = 7.x
|
|||||||
files[] = file_test.module
|
files[] = file_test.module
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ core = 7.x
|
|||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
package = Testing
|
package = Testing
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ core = 7.x
|
|||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
package = Testing
|
package = Testing
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -7,7 +7,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ core = 7.x
|
|||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
dependencies[] = _missing_dependency
|
dependencies[] = _missing_dependency
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ core = 7.x
|
|||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
dependencies[] = system_incompatible_core_version_test
|
dependencies[] = system_incompatible_core_version_test
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 5.x
|
core = 5.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -7,7 +7,7 @@ hidden = TRUE
|
|||||||
; system_incompatible_module_version_test declares version 1.0
|
; system_incompatible_module_version_test declares version 1.0
|
||||||
dependencies[] = system_incompatible_module_version_test (>2.0)
|
dependencies[] = system_incompatible_module_version_test (>2.0)
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = 1.0
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ core = 7.x
|
|||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
dependencies[] = drupal:filter
|
dependencies[] = drupal:filter
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ core = 7.x
|
|||||||
files[] = system_test.module
|
files[] = system_test.module
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ core = 7.x
|
|||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
dependencies[] = taxonomy
|
dependencies[] = taxonomy
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -5,7 +5,7 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ hidden = TRUE
|
|||||||
settings[basetheme_only] = base theme value
|
settings[basetheme_only] = base theme value
|
||||||
settings[subtheme_override] = base theme value
|
settings[subtheme_override] = base theme value
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -6,7 +6,7 @@ hidden = TRUE
|
|||||||
|
|
||||||
settings[subtheme_override] = subtheme value
|
settings[subtheme_override] = subtheme value
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -17,7 +17,7 @@ stylesheets[all][] = system.base.css
|
|||||||
|
|
||||||
settings[theme_test_setting] = default value
|
settings[theme_test_setting] = default value
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
@ -4,7 +4,7 @@ core = 7.x
|
|||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
engine = nyan_cat
|
engine = nyan_cat
|
||||||
|
|
||||||
; Information added by Drupal.org packaging script on 2020-06-17
|
; Information added by Drupal.org packaging script on 2020-09-16
|
||||||
version = "7.72"
|
version = "7.73"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1592419104"
|
datestamp = "1600272641"
|
||||||
|
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