Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
taylor-steve committed Feb 21, 2022
2 parents b501698 + 2c5c412 commit 0bd655b
Show file tree
Hide file tree
Showing 145 changed files with 509 additions and 408 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Drupal 7.88, 2022-02-15
-----------------------
- Fixed security issues:
- SA-CORE-2022-003

Drupal 7.87, 2022-01-19
-----------------------
- Fix regression caused by jQuery UI position() backport
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Mukurtu CMS 3.0.1
# Mukurtu CMS 3.0.2
### [Release Notes](VERSION.md)

## Contents
Expand Down
7 changes: 7 additions & 0 deletions VERSION.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## Mukurtu 3.0.2
- Updated to Drupal 7.88
- Updated Colorbox

#### Manual Upgrade Steps
This version does not require any database updates.

## Mukurtu 3.0.1
- Updated to Drupal 7.87
- Change default permissions for 'delete all items' option in feeds
Expand Down
2 changes: 1 addition & 1 deletion includes/bootstrap.inc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* The current system version.
*/
define('VERSION', '7.87');
define('VERSION', '7.88');

/**
* Core API compatibility.
Expand Down
2 changes: 1 addition & 1 deletion includes/bootstrap.inc.orig
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* The current system version.
*/
define('VERSION', '7.87');
define('VERSION', '7.88');

/**
* Core API compatibility.
Expand Down
2 changes: 1 addition & 1 deletion includes/form.inc
Original file line number Diff line number Diff line change
Expand Up @@ -2087,7 +2087,7 @@ function _form_builder_handle_input_element($form_id, &$element, &$form_state) {
// #access=FALSE on an element usually allow access for some users, so forms
// submitted with drupal_form_submit() may bypass access restriction and be
// treated as high-privilege users instead.
$process_input = empty($element['#disabled']) && (($form_state['programmed'] && $form_state['programmed_bypass_access_check']) || ($form_state['process_input'] && (!isset($element['#access']) || $element['#access'])));
$process_input = empty($element['#disabled']) && ($element['#type'] !== 'value') && (($form_state['programmed'] && $form_state['programmed_bypass_access_check']) || ($form_state['process_input'] && (!isset($element['#access']) || $element['#access'])));

// Set the element's #value property.
if (!isset($element['#value']) && !array_key_exists('#value', $element)) {
Expand Down
6 changes: 3 additions & 3 deletions modules/aggregator/aggregator.info
Original file line number Diff line number Diff line change
Expand Up @@ -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 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/aggregator/tests/aggregator_test.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version = VERSION
core = 7.x
hidden = TRUE

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/block/block.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ core = 7.x
files[] = block.test
configure = admin/structure/block

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/block/tests/block_test.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version = VERSION
core = 7.x
hidden = TRUE

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ regions[footer] = Footer
regions[highlighted] = Highlighted
regions[help] = Help

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/blog/blog.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version = VERSION
core = 7.x
files[] = blog.test

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/book/book.info
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ files[] = book.test
configure = admin/content/book/settings
stylesheets[all][] = book.css

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/color/color.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version = VERSION
core = 7.x
files[] = color.test

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/comment/comment.info
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ files[] = comment.test
configure = admin/content/comment
stylesheets[all][] = comment.css

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/contact/contact.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ core = 7.x
files[] = contact.test
configure = admin/structure/contact

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/contextual/contextual.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version = VERSION
core = 7.x
files[] = contextual.test

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/dashboard/dashboard.info
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ files[] = dashboard.test
dependencies[] = block
configure = admin/dashboard/customize

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/dblog/dblog.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version = VERSION
core = 7.x
files[] = dblog.test

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/field/field.info
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies[] = field_sql_storage
required = TRUE
stylesheets[all][] = theme/field.css

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies[] = field
files[] = field_sql_storage.test
required = TRUE

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/field/modules/list/list.info
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies[] = field
dependencies[] = options
files[] = tests/list.test

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/field/modules/list/tests/list_test.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package = Testing
version = VERSION
hidden = TRUE

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/field/modules/number/number.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ core = 7.x
dependencies[] = field
files[] = number.test

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/field/modules/options/options.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ core = 7.x
dependencies[] = field
files[] = options.test

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/field/modules/text/text.info
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies[] = field
files[] = text.test
required = TRUE

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/field/tests/field_test.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ files[] = field_test.entity.inc
version = VERSION
hidden = TRUE

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/field_ui/field_ui.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ core = 7.x
dependencies[] = field
files[] = field_ui.test

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/file/file.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ core = 7.x
dependencies[] = field
files[] = tests/file.test

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/file/tests/file_module_test.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version = VERSION
core = 7.x
hidden = TRUE

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/filter/filter.info
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ files[] = filter.test
required = TRUE
configure = admin/config/content/formats

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/forum/forum.info
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ files[] = forum.test
configure = admin/structure/forum
stylesheets[all][] = forum.css

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/help/help.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version = VERSION
core = 7.x
files[] = help.test

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/image/image.info
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies[] = file
files[] = image.test
configure = admin/config/media/image-styles

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/image/tests/image_module_test.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ core = 7.x
files[] = image_module_test.module
hidden = TRUE

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/locale/locale.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ core = 7.x
files[] = locale.test
configure = admin/config/regional/language

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
6 changes: 3 additions & 3 deletions modules/locale/tests/locale_test.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package = Testing
version = VERSION
hidden = TRUE

; Information added by Drupal.org packaging script on 2022-01-19
version = "7.87"
; Information added by Drupal.org packaging script on 2022-02-16
version = "7.88"
project = "drupal"
datestamp = "1642633901"
datestamp = "1645030312"
Loading

0 comments on commit 0bd655b

Please sign in to comment.