diff --git a/docroot/CHANGELOG.txt b/docroot/CHANGELOG.txt index 02817950..9cc198bb 100644 --- a/docroot/CHANGELOG.txt +++ b/docroot/CHANGELOG.txt @@ -1,3 +1,8 @@ +Drupal 7.96, 2023-04-19 +----------------------- +- Fixed security issues: + - SA-CORE-2023-005 + Drupal 7.95, 2023-03-15 ----------------------- - Fixed security issues: diff --git a/docroot/includes/bootstrap.inc b/docroot/includes/bootstrap.inc index 980ad359..5bfc8a1b 100644 --- a/docroot/includes/bootstrap.inc +++ b/docroot/includes/bootstrap.inc @@ -8,7 +8,7 @@ /** * The current system version. */ -define('VERSION', '7.95'); +define('VERSION', '7.96'); /** * Core API compatibility. diff --git a/docroot/includes/file.inc b/docroot/includes/file.inc index b132b9c7..08c3053a 100644 --- a/docroot/includes/file.inc +++ b/docroot/includes/file.inc @@ -2073,6 +2073,7 @@ function file_download() { $scheme = array_shift($args); $target = implode('/', $args); $uri = $scheme . '://' . $target; + $uri = file_uri_normalize_dot_segments($uri); if (file_stream_wrapper_valid_scheme($scheme) && file_exists($uri)) { $headers = file_download_headers($uri); if (count($headers)) { @@ -2730,6 +2731,58 @@ function file_get_content_headers($file) { ); } +/** + * Normalize dot segments in a URI. + * + * @param $uri + * A stream, referenced as "scheme://target". + * + * @return string + * The URI with dot segments removed and slashes as directory separator. + */ +function file_uri_normalize_dot_segments($uri) { + $scheme = file_uri_scheme($uri); + + if (file_stream_wrapper_valid_scheme($scheme)) { + $target = file_uri_target($uri); + + if ($target !== FALSE) { + if (!in_array($scheme, variable_get('file_sa_core_2023_005_schemes', array()))) { + $class = file_stream_wrapper_get_class($scheme); + $is_local = is_subclass_of($class, DrupalLocalStreamWrapper::class); + if ($is_local) { + $target = str_replace(DIRECTORY_SEPARATOR, '/', $target); + } + + $parts = explode('/', $target); + $normalized_parts = array(); + while ($parts) { + $part = array_shift($parts); + if ($part === '' || $part === '.') { + continue; + } + elseif ($part === '..' && $is_local && $normalized_parts === array()) { + $normalized_parts[] = $part; + break; + } + elseif ($part === '..') { + array_pop($normalized_parts); + } + else { + $normalized_parts[] = $part; + } + } + + $target = implode('/', array_merge($normalized_parts, $parts)); + } + + $uri = $scheme . '://' . $target; + } + } + + return $uri; +} + /** * @} End of "defgroup file". */ diff --git a/docroot/modules/aggregator/aggregator.info b/docroot/modules/aggregator/aggregator.info index b76ed74d..79311608 100644 --- a/docroot/modules/aggregator/aggregator.info +++ b/docroot/modules/aggregator/aggregator.info @@ -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 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/aggregator/tests/aggregator_test.info b/docroot/modules/aggregator/tests/aggregator_test.info index a44dd7e8..13bf3aba 100644 --- a/docroot/modules/aggregator/tests/aggregator_test.info +++ b/docroot/modules/aggregator/tests/aggregator_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/block/block.info b/docroot/modules/block/block.info index fc066e0d..4db826be 100644 --- a/docroot/modules/block/block.info +++ b/docroot/modules/block/block.info @@ -6,7 +6,7 @@ core = 7.x files[] = block.test configure = admin/structure/block -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/block/tests/block_test.info b/docroot/modules/block/tests/block_test.info index e9c3c616..8f276301 100644 --- a/docroot/modules/block/tests/block_test.info +++ b/docroot/modules/block/tests/block_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/block/tests/themes/block_test_theme/block_test_theme.info b/docroot/modules/block/tests/themes/block_test_theme/block_test_theme.info index 804e42e4..f0fafc9d 100644 --- a/docroot/modules/block/tests/themes/block_test_theme/block_test_theme.info +++ b/docroot/modules/block/tests/themes/block_test_theme/block_test_theme.info @@ -13,7 +13,7 @@ regions[footer] = Footer regions[highlighted] = Highlighted regions[help] = Help -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/blog/blog.info b/docroot/modules/blog/blog.info index 2961b51d..62f1f0fc 100644 --- a/docroot/modules/blog/blog.info +++ b/docroot/modules/blog/blog.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x files[] = blog.test -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/book/book.info b/docroot/modules/book/book.info index 58805e91..7cd4bf90 100644 --- a/docroot/modules/book/book.info +++ b/docroot/modules/book/book.info @@ -7,7 +7,7 @@ files[] = book.test configure = admin/content/book/settings stylesheets[all][] = book.css -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/color/color.info b/docroot/modules/color/color.info index fd3bf9c2..8bda1146 100644 --- a/docroot/modules/color/color.info +++ b/docroot/modules/color/color.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x files[] = color.test -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/comment/comment.info b/docroot/modules/comment/comment.info index 98e3ede1..4e670bff 100644 --- a/docroot/modules/comment/comment.info +++ b/docroot/modules/comment/comment.info @@ -9,7 +9,7 @@ files[] = comment.test configure = admin/content/comment stylesheets[all][] = comment.css -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/comment/tests/comment_hook_test.info b/docroot/modules/comment/tests/comment_hook_test.info index 46411de5..ff3badde 100644 --- a/docroot/modules/comment/tests/comment_hook_test.info +++ b/docroot/modules/comment/tests/comment_hook_test.info @@ -5,7 +5,7 @@ package = Testing version = VERSION hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/contact/contact.info b/docroot/modules/contact/contact.info index e2b0c3ba..be7c3f84 100644 --- a/docroot/modules/contact/contact.info +++ b/docroot/modules/contact/contact.info @@ -6,7 +6,7 @@ core = 7.x files[] = contact.test configure = admin/structure/contact -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/contextual/contextual.info b/docroot/modules/contextual/contextual.info index 202bbfa3..8dfea8ae 100644 --- a/docroot/modules/contextual/contextual.info +++ b/docroot/modules/contextual/contextual.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x files[] = contextual.test -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/dashboard/dashboard.info b/docroot/modules/dashboard/dashboard.info index fe89ed22..3d38acbd 100644 --- a/docroot/modules/dashboard/dashboard.info +++ b/docroot/modules/dashboard/dashboard.info @@ -7,7 +7,7 @@ files[] = dashboard.test dependencies[] = block configure = admin/dashboard/customize -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/dblog/dblog.info b/docroot/modules/dblog/dblog.info index fa63cfe0..a5112a62 100644 --- a/docroot/modules/dblog/dblog.info +++ b/docroot/modules/dblog/dblog.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x files[] = dblog.test -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/field/field.info b/docroot/modules/field/field.info index e260084f..fab0bf81 100644 --- a/docroot/modules/field/field.info +++ b/docroot/modules/field/field.info @@ -11,7 +11,7 @@ dependencies[] = field_sql_storage required = TRUE stylesheets[all][] = theme/field.css -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/field/modules/field_sql_storage/field_sql_storage.info b/docroot/modules/field/modules/field_sql_storage/field_sql_storage.info index c295748c..e97f4da9 100644 --- a/docroot/modules/field/modules/field_sql_storage/field_sql_storage.info +++ b/docroot/modules/field/modules/field_sql_storage/field_sql_storage.info @@ -7,7 +7,7 @@ dependencies[] = field files[] = field_sql_storage.test required = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/field/modules/list/list.info b/docroot/modules/field/modules/list/list.info index c9e1e3e6..afbaf031 100644 --- a/docroot/modules/field/modules/list/list.info +++ b/docroot/modules/field/modules/list/list.info @@ -7,7 +7,7 @@ dependencies[] = field dependencies[] = options files[] = tests/list.test -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/field/modules/list/tests/list_test.info b/docroot/modules/field/modules/list/tests/list_test.info index 2ecea39d..b100655a 100644 --- a/docroot/modules/field/modules/list/tests/list_test.info +++ b/docroot/modules/field/modules/list/tests/list_test.info @@ -5,7 +5,7 @@ package = Testing version = VERSION hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/field/modules/number/number.info b/docroot/modules/field/modules/number/number.info index edea52c6..9501753e 100644 --- a/docroot/modules/field/modules/number/number.info +++ b/docroot/modules/field/modules/number/number.info @@ -6,7 +6,7 @@ core = 7.x dependencies[] = field files[] = number.test -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/field/modules/options/options.info b/docroot/modules/field/modules/options/options.info index 33d6bbe4..96a6e2f5 100644 --- a/docroot/modules/field/modules/options/options.info +++ b/docroot/modules/field/modules/options/options.info @@ -6,7 +6,7 @@ core = 7.x dependencies[] = field files[] = options.test -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/field/modules/text/text.info b/docroot/modules/field/modules/text/text.info index 08602fa8..67d6de87 100644 --- a/docroot/modules/field/modules/text/text.info +++ b/docroot/modules/field/modules/text/text.info @@ -7,7 +7,7 @@ dependencies[] = field files[] = text.test required = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/field/tests/field_test.info b/docroot/modules/field/tests/field_test.info index 039df6b4..d32417c1 100644 --- a/docroot/modules/field/tests/field_test.info +++ b/docroot/modules/field/tests/field_test.info @@ -6,7 +6,7 @@ files[] = field_test.entity.inc version = VERSION hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/field_ui/field_ui.info b/docroot/modules/field_ui/field_ui.info index ebbcee9d..a18adc75 100644 --- a/docroot/modules/field_ui/field_ui.info +++ b/docroot/modules/field_ui/field_ui.info @@ -6,7 +6,7 @@ core = 7.x dependencies[] = field files[] = field_ui.test -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/file/file.info b/docroot/modules/file/file.info index 7bea3557..62c27613 100644 --- a/docroot/modules/file/file.info +++ b/docroot/modules/file/file.info @@ -6,7 +6,7 @@ core = 7.x dependencies[] = field files[] = tests/file.test -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/file/tests/file_module_test.info b/docroot/modules/file/tests/file_module_test.info index 8ef0a283..bbcb6908 100644 --- a/docroot/modules/file/tests/file_module_test.info +++ b/docroot/modules/file/tests/file_module_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/filter/filter.info b/docroot/modules/filter/filter.info index 8f1e4bf3..b9d78262 100644 --- a/docroot/modules/filter/filter.info +++ b/docroot/modules/filter/filter.info @@ -7,7 +7,7 @@ files[] = filter.test required = TRUE configure = admin/config/content/formats -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/forum/forum.info b/docroot/modules/forum/forum.info index 47825f41..07c6b3e6 100644 --- a/docroot/modules/forum/forum.info +++ b/docroot/modules/forum/forum.info @@ -9,7 +9,7 @@ files[] = forum.test configure = admin/structure/forum stylesheets[all][] = forum.css -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/help/help.info b/docroot/modules/help/help.info index 7e191a18..7e610c11 100644 --- a/docroot/modules/help/help.info +++ b/docroot/modules/help/help.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x files[] = help.test -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/image/image.info b/docroot/modules/image/image.info index 474e06e1..387aaa10 100644 --- a/docroot/modules/image/image.info +++ b/docroot/modules/image/image.info @@ -7,7 +7,7 @@ dependencies[] = file files[] = image.test configure = admin/config/media/image-styles -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/image/image.module b/docroot/modules/image/image.module index 9f9ad11d..f18e0052 100644 --- a/docroot/modules/image/image.module +++ b/docroot/modules/image/image.module @@ -819,6 +819,20 @@ function image_style_deliver($style, $scheme = NULL) { array_shift($args); array_shift($args); $target = implode('/', $args); + $image_uri = $scheme . '://' . $target; + $image_uri = file_uri_normalize_dot_segments($image_uri); + + if (file_stream_wrapper_valid_scheme($scheme)) { + $normalized_target = file_uri_target($image_uri); + if ($normalized_target !== FALSE) { + if (!in_array($scheme, variable_get('file_sa_core_2023_005_schemes', array()))) { + $parts = explode('/', $normalized_target); + if (array_intersect($parts, array('.', '..'))) { + return MENU_NOT_FOUND; + } + } + } + } // Check that the style is defined, the scheme is valid. $valid = !empty($style) && !empty($scheme) && file_stream_wrapper_valid_scheme($scheme); @@ -830,7 +844,9 @@ function image_style_deliver($style, $scheme = NULL) { // variable from leaving the site vulnerable to the most serious attacks, a // token is always required when a derivative of a derivative is requested.) $token = isset($_GET[IMAGE_DERIVATIVE_TOKEN]) ? $_GET[IMAGE_DERIVATIVE_TOKEN] : ''; - $token_is_valid = $token === image_style_path_token($style['name'], $scheme . '://' . $target); + $token_is_valid = + $token === image_style_path_token($style['name'], $image_uri) + || $token === image_style_path_token($style['name'], $scheme . '://' . $target); if (!variable_get('image_allow_insecure_derivatives', FALSE) || strpos(ltrim($target, '\/'), 'styles/') === 0) { $valid = $valid && $token_is_valid; } @@ -838,7 +854,6 @@ function image_style_deliver($style, $scheme = NULL) { return MENU_ACCESS_DENIED; } - $image_uri = $scheme . '://' . $target; $derivative_uri = image_style_path($style['name'], $image_uri); $derivative_scheme = file_uri_scheme($derivative_uri); @@ -1084,9 +1099,11 @@ function image_style_flush($style) { */ function image_style_url($style_name, $path) { $uri = image_style_path($style_name, $path); + $uri = file_uri_normalize_dot_segments($uri); // The passed-in $path variable can be either a relative path or a full URI. $original_uri = file_uri_scheme($path) ? file_stream_wrapper_uri_normalize($path) : file_build_uri($path); + $original_uri = file_uri_normalize_dot_segments($original_uri); // The token query is added even if the 'image_allow_insecure_derivatives' // variable is TRUE, so that the emitted links remain valid if it is changed diff --git a/docroot/modules/image/tests/image_module_styles_test.info b/docroot/modules/image/tests/image_module_styles_test.info index f4aab036..44856e60 100644 --- a/docroot/modules/image/tests/image_module_styles_test.info +++ b/docroot/modules/image/tests/image_module_styles_test.info @@ -7,7 +7,7 @@ files[] = image_module_styles_test.module dependencies[] = image_module_test hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/image/tests/image_module_test.info b/docroot/modules/image/tests/image_module_test.info index 8c6e9320..7ad258db 100644 --- a/docroot/modules/image/tests/image_module_test.info +++ b/docroot/modules/image/tests/image_module_test.info @@ -6,7 +6,7 @@ core = 7.x files[] = image_module_test.module hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/locale/locale.info b/docroot/modules/locale/locale.info index 4056b2b9..fad05d35 100644 --- a/docroot/modules/locale/locale.info +++ b/docroot/modules/locale/locale.info @@ -6,7 +6,7 @@ core = 7.x files[] = locale.test configure = admin/config/regional/language -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/locale/tests/locale_test.info b/docroot/modules/locale/tests/locale_test.info index 127b22a4..5165e994 100644 --- a/docroot/modules/locale/tests/locale_test.info +++ b/docroot/modules/locale/tests/locale_test.info @@ -5,7 +5,7 @@ package = Testing version = VERSION hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/menu/menu.info b/docroot/modules/menu/menu.info index af4880ce..f57b466c 100644 --- a/docroot/modules/menu/menu.info +++ b/docroot/modules/menu/menu.info @@ -6,7 +6,7 @@ core = 7.x files[] = menu.test configure = admin/structure/menu -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/node/node.info b/docroot/modules/node/node.info index 8e263efa..67b4e293 100644 --- a/docroot/modules/node/node.info +++ b/docroot/modules/node/node.info @@ -9,7 +9,7 @@ required = TRUE configure = admin/structure/types stylesheets[all][] = node.css -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/node/tests/node_access_test.info b/docroot/modules/node/tests/node_access_test.info index d0c1ad72..de6930e5 100644 --- a/docroot/modules/node/tests/node_access_test.info +++ b/docroot/modules/node/tests/node_access_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/node/tests/node_test.info b/docroot/modules/node/tests/node_test.info index 726d12d6..8ac8b5a8 100644 --- a/docroot/modules/node/tests/node_test.info +++ b/docroot/modules/node/tests/node_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/node/tests/node_test_exception.info b/docroot/modules/node/tests/node_test_exception.info index 7678d8fc..13a254ba 100644 --- a/docroot/modules/node/tests/node_test_exception.info +++ b/docroot/modules/node/tests/node_test_exception.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/openid/openid.info b/docroot/modules/openid/openid.info index d3d84717..1a077d90 100644 --- a/docroot/modules/openid/openid.info +++ b/docroot/modules/openid/openid.info @@ -5,7 +5,7 @@ package = Core core = 7.x files[] = openid.test -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/openid/tests/openid_test.info b/docroot/modules/openid/tests/openid_test.info index 560682c2..890ca281 100644 --- a/docroot/modules/openid/tests/openid_test.info +++ b/docroot/modules/openid/tests/openid_test.info @@ -6,7 +6,7 @@ core = 7.x dependencies[] = openid hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/overlay/overlay.info b/docroot/modules/overlay/overlay.info index 52e7c4cd..b27b25de 100644 --- a/docroot/modules/overlay/overlay.info +++ b/docroot/modules/overlay/overlay.info @@ -4,7 +4,7 @@ package = Core version = VERSION core = 7.x -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/path/path.info b/docroot/modules/path/path.info index f7f3770d..62132d67 100644 --- a/docroot/modules/path/path.info +++ b/docroot/modules/path/path.info @@ -6,7 +6,7 @@ core = 7.x files[] = path.test configure = admin/config/search/path -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/php/php.info b/docroot/modules/php/php.info index 0b0cd4fa..a91e1650 100644 --- a/docroot/modules/php/php.info +++ b/docroot/modules/php/php.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x files[] = php.test -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/poll/poll.info b/docroot/modules/poll/poll.info index cffaa608..306b30c8 100644 --- a/docroot/modules/poll/poll.info +++ b/docroot/modules/poll/poll.info @@ -6,7 +6,7 @@ core = 7.x files[] = poll.test stylesheets[all][] = poll.css -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/profile/profile.info b/docroot/modules/profile/profile.info index 1fd26ee5..ced2f9c5 100644 --- a/docroot/modules/profile/profile.info +++ b/docroot/modules/profile/profile.info @@ -11,7 +11,7 @@ configure = admin/config/people/profile ; See user_system_info_alter(). hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/rdf/rdf.info b/docroot/modules/rdf/rdf.info index fea3b557..52891188 100644 --- a/docroot/modules/rdf/rdf.info +++ b/docroot/modules/rdf/rdf.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x files[] = rdf.test -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/rdf/tests/rdf_test.info b/docroot/modules/rdf/tests/rdf_test.info index 8512a251..8fd11464 100644 --- a/docroot/modules/rdf/tests/rdf_test.info +++ b/docroot/modules/rdf/tests/rdf_test.info @@ -6,7 +6,7 @@ core = 7.x hidden = TRUE dependencies[] = blog -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/search/search.info b/docroot/modules/search/search.info index 511eca54..b2500845 100644 --- a/docroot/modules/search/search.info +++ b/docroot/modules/search/search.info @@ -8,7 +8,7 @@ files[] = search.test configure = admin/config/search/settings stylesheets[all][] = search.css -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/search/tests/search_embedded_form.info b/docroot/modules/search/tests/search_embedded_form.info index 2b162845..703397d6 100644 --- a/docroot/modules/search/tests/search_embedded_form.info +++ b/docroot/modules/search/tests/search_embedded_form.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/search/tests/search_extra_type.info b/docroot/modules/search/tests/search_extra_type.info index d5a6986f..fa56397f 100644 --- a/docroot/modules/search/tests/search_extra_type.info +++ b/docroot/modules/search/tests/search_extra_type.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/search/tests/search_node_tags.info b/docroot/modules/search/tests/search_node_tags.info index b02cb9a8..2cb4331d 100644 --- a/docroot/modules/search/tests/search_node_tags.info +++ b/docroot/modules/search/tests/search_node_tags.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/shortcut/shortcut.info b/docroot/modules/shortcut/shortcut.info index f06e84d6..200714cf 100644 --- a/docroot/modules/shortcut/shortcut.info +++ b/docroot/modules/shortcut/shortcut.info @@ -6,7 +6,7 @@ core = 7.x files[] = shortcut.test configure = admin/config/user-interface/shortcut -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/simpletest.info b/docroot/modules/simpletest/simpletest.info index 2fdd08f2..6fe68337 100644 --- a/docroot/modules/simpletest/simpletest.info +++ b/docroot/modules/simpletest/simpletest.info @@ -58,7 +58,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 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/actions_loop_test.info b/docroot/modules/simpletest/tests/actions_loop_test.info index 1fc191af..8804b451 100644 --- a/docroot/modules/simpletest/tests/actions_loop_test.info +++ b/docroot/modules/simpletest/tests/actions_loop_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/ajax_forms_test.info b/docroot/modules/simpletest/tests/ajax_forms_test.info index 9a9e28c2..510e9971 100644 --- a/docroot/modules/simpletest/tests/ajax_forms_test.info +++ b/docroot/modules/simpletest/tests/ajax_forms_test.info @@ -5,7 +5,7 @@ package = Testing version = VERSION hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/ajax_test.info b/docroot/modules/simpletest/tests/ajax_test.info index 847cd733..6d588fce 100644 --- a/docroot/modules/simpletest/tests/ajax_test.info +++ b/docroot/modules/simpletest/tests/ajax_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/batch_test.info b/docroot/modules/simpletest/tests/batch_test.info index fe2406fa..de12c62b 100644 --- a/docroot/modules/simpletest/tests/batch_test.info +++ b/docroot/modules/simpletest/tests/batch_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/boot_test_1.info b/docroot/modules/simpletest/tests/boot_test_1.info index 6b6ea629..d633b010 100644 --- a/docroot/modules/simpletest/tests/boot_test_1.info +++ b/docroot/modules/simpletest/tests/boot_test_1.info @@ -5,7 +5,7 @@ package = Testing version = VERSION hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/boot_test_2.info b/docroot/modules/simpletest/tests/boot_test_2.info index 5ffcb3a7..792fc31f 100644 --- a/docroot/modules/simpletest/tests/boot_test_2.info +++ b/docroot/modules/simpletest/tests/boot_test_2.info @@ -5,7 +5,7 @@ package = Testing version = VERSION hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/common_test.info b/docroot/modules/simpletest/tests/common_test.info index 559f97b3..bfc74e8d 100644 --- a/docroot/modules/simpletest/tests/common_test.info +++ b/docroot/modules/simpletest/tests/common_test.info @@ -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 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/common_test_cron_helper.info b/docroot/modules/simpletest/tests/common_test_cron_helper.info index 7122c7e2..ded4379b 100644 --- a/docroot/modules/simpletest/tests/common_test_cron_helper.info +++ b/docroot/modules/simpletest/tests/common_test_cron_helper.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/database_test.info b/docroot/modules/simpletest/tests/database_test.info index 551a0f61..7109cca0 100644 --- a/docroot/modules/simpletest/tests/database_test.info +++ b/docroot/modules/simpletest/tests/database_test.info @@ -5,7 +5,7 @@ package = Testing version = VERSION hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/drupal_autoload_test/drupal_autoload_test.info b/docroot/modules/simpletest/tests/drupal_autoload_test/drupal_autoload_test.info index 2841f7c6..41722b19 100644 --- a/docroot/modules/simpletest/tests/drupal_autoload_test/drupal_autoload_test.info +++ b/docroot/modules/simpletest/tests/drupal_autoload_test/drupal_autoload_test.info @@ -7,7 +7,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info b/docroot/modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info index a65771ff..9e2b5eea 100644 --- a/docroot/modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info +++ b/docroot/modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info b/docroot/modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info index c1e883ca..76927e4b 100644 --- a/docroot/modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info +++ b/docroot/modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/entity_cache_test.info b/docroot/modules/simpletest/tests/entity_cache_test.info index 5b4849ee..7add7223 100644 --- a/docroot/modules/simpletest/tests/entity_cache_test.info +++ b/docroot/modules/simpletest/tests/entity_cache_test.info @@ -6,7 +6,7 @@ core = 7.x dependencies[] = entity_cache_test_dependency hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/entity_cache_test_dependency.info b/docroot/modules/simpletest/tests/entity_cache_test_dependency.info index 7cde0ea0..281b8fc7 100644 --- a/docroot/modules/simpletest/tests/entity_cache_test_dependency.info +++ b/docroot/modules/simpletest/tests/entity_cache_test_dependency.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/entity_crud_hook_test.info b/docroot/modules/simpletest/tests/entity_crud_hook_test.info index 8afdb5f8..607f7985 100644 --- a/docroot/modules/simpletest/tests/entity_crud_hook_test.info +++ b/docroot/modules/simpletest/tests/entity_crud_hook_test.info @@ -5,7 +5,7 @@ package = Testing version = VERSION hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/entity_query_access_test.info b/docroot/modules/simpletest/tests/entity_query_access_test.info index 395559ff..5a304e8f 100644 --- a/docroot/modules/simpletest/tests/entity_query_access_test.info +++ b/docroot/modules/simpletest/tests/entity_query_access_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/error_test.info b/docroot/modules/simpletest/tests/error_test.info index a7f8ff8f..21986be1 100644 --- a/docroot/modules/simpletest/tests/error_test.info +++ b/docroot/modules/simpletest/tests/error_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/file_test.info b/docroot/modules/simpletest/tests/file_test.info index 13a8bf6d..2216afab 100644 --- a/docroot/modules/simpletest/tests/file_test.info +++ b/docroot/modules/simpletest/tests/file_test.info @@ -6,7 +6,7 @@ core = 7.x files[] = file_test.module hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/filter_test.info b/docroot/modules/simpletest/tests/filter_test.info index fd93e8ae..1f80de94 100644 --- a/docroot/modules/simpletest/tests/filter_test.info +++ b/docroot/modules/simpletest/tests/filter_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/form_test.info b/docroot/modules/simpletest/tests/form_test.info index 7c339e26..c3dee44e 100644 --- a/docroot/modules/simpletest/tests/form_test.info +++ b/docroot/modules/simpletest/tests/form_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/image_test.info b/docroot/modules/simpletest/tests/image_test.info index 60b47dda..4256ebf3 100644 --- a/docroot/modules/simpletest/tests/image_test.info +++ b/docroot/modules/simpletest/tests/image_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/menu_test.info b/docroot/modules/simpletest/tests/menu_test.info index 959be8c6..86fa2adc 100644 --- a/docroot/modules/simpletest/tests/menu_test.info +++ b/docroot/modules/simpletest/tests/menu_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/module_test.info b/docroot/modules/simpletest/tests/module_test.info index d4c939d5..ef982697 100644 --- a/docroot/modules/simpletest/tests/module_test.info +++ b/docroot/modules/simpletest/tests/module_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/path_test.info b/docroot/modules/simpletest/tests/path_test.info index 083df3dd..572b2e1a 100644 --- a/docroot/modules/simpletest/tests/path_test.info +++ b/docroot/modules/simpletest/tests/path_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/psr_0_test/psr_0_test.info b/docroot/modules/simpletest/tests/psr_0_test/psr_0_test.info index 5d5d9ba8..59a89496 100644 --- a/docroot/modules/simpletest/tests/psr_0_test/psr_0_test.info +++ b/docroot/modules/simpletest/tests/psr_0_test/psr_0_test.info @@ -5,7 +5,7 @@ core = 7.x hidden = TRUE package = Testing -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/psr_4_test/psr_4_test.info b/docroot/modules/simpletest/tests/psr_4_test/psr_4_test.info index 30af060a..45b0706a 100644 --- a/docroot/modules/simpletest/tests/psr_4_test/psr_4_test.info +++ b/docroot/modules/simpletest/tests/psr_4_test/psr_4_test.info @@ -5,7 +5,7 @@ core = 7.x hidden = TRUE package = Testing -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/requirements1_test.info b/docroot/modules/simpletest/tests/requirements1_test.info index 17cf5fd3..191e4823 100644 --- a/docroot/modules/simpletest/tests/requirements1_test.info +++ b/docroot/modules/simpletest/tests/requirements1_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/requirements2_test.info b/docroot/modules/simpletest/tests/requirements2_test.info index 4f6f23a8..aadba545 100644 --- a/docroot/modules/simpletest/tests/requirements2_test.info +++ b/docroot/modules/simpletest/tests/requirements2_test.info @@ -7,7 +7,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/session_test.info b/docroot/modules/simpletest/tests/session_test.info index 907f7e92..e1e63017 100644 --- a/docroot/modules/simpletest/tests/session_test.info +++ b/docroot/modules/simpletest/tests/session_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/system_admin_test.info b/docroot/modules/simpletest/tests/system_admin_test.info index ea9643cb..b9f53ba9 100644 --- a/docroot/modules/simpletest/tests/system_admin_test.info +++ b/docroot/modules/simpletest/tests/system_admin_test.info @@ -6,7 +6,7 @@ core = 7.x hidden = FALSE configure = config/broken -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/system_dependencies_test.info b/docroot/modules/simpletest/tests/system_dependencies_test.info index d00cb45f..003a56a4 100644 --- a/docroot/modules/simpletest/tests/system_dependencies_test.info +++ b/docroot/modules/simpletest/tests/system_dependencies_test.info @@ -6,7 +6,7 @@ core = 7.x hidden = TRUE dependencies[] = _missing_dependency -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/system_incompatible_core_version_dependencies_test.info b/docroot/modules/simpletest/tests/system_incompatible_core_version_dependencies_test.info index f1b85343..034a0811 100644 --- a/docroot/modules/simpletest/tests/system_incompatible_core_version_dependencies_test.info +++ b/docroot/modules/simpletest/tests/system_incompatible_core_version_dependencies_test.info @@ -6,7 +6,7 @@ core = 7.x hidden = TRUE dependencies[] = system_incompatible_core_version_test -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/system_incompatible_core_version_test.info b/docroot/modules/simpletest/tests/system_incompatible_core_version_test.info index 7185eb57..6919a40f 100644 --- a/docroot/modules/simpletest/tests/system_incompatible_core_version_test.info +++ b/docroot/modules/simpletest/tests/system_incompatible_core_version_test.info @@ -5,7 +5,7 @@ version = VERSION core = 5.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/system_incompatible_module_version_dependencies_test.info b/docroot/modules/simpletest/tests/system_incompatible_module_version_dependencies_test.info index 54ab48b7..2b2ef405 100644 --- a/docroot/modules/simpletest/tests/system_incompatible_module_version_dependencies_test.info +++ b/docroot/modules/simpletest/tests/system_incompatible_module_version_dependencies_test.info @@ -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 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/system_incompatible_module_version_test.info b/docroot/modules/simpletest/tests/system_incompatible_module_version_test.info index 27fd60fe..0db332ed 100644 --- a/docroot/modules/simpletest/tests/system_incompatible_module_version_test.info +++ b/docroot/modules/simpletest/tests/system_incompatible_module_version_test.info @@ -5,7 +5,7 @@ version = 1.0 core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/system_null_version_test.info b/docroot/modules/simpletest/tests/system_null_version_test.info index 1d025238..70d580d8 100644 --- a/docroot/modules/simpletest/tests/system_null_version_test.info +++ b/docroot/modules/simpletest/tests/system_null_version_test.info @@ -4,7 +4,7 @@ package = Only For Testing core = 7.x hidden = FALSE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/system_project_namespace_test.info b/docroot/modules/simpletest/tests/system_project_namespace_test.info index 4aea55ca..ee182a62 100644 --- a/docroot/modules/simpletest/tests/system_project_namespace_test.info +++ b/docroot/modules/simpletest/tests/system_project_namespace_test.info @@ -6,7 +6,7 @@ core = 7.x hidden = TRUE dependencies[] = drupal:filter -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/system_requires_null_version_test.info b/docroot/modules/simpletest/tests/system_requires_null_version_test.info index d691975f..fa5a824b 100644 --- a/docroot/modules/simpletest/tests/system_requires_null_version_test.info +++ b/docroot/modules/simpletest/tests/system_requires_null_version_test.info @@ -6,7 +6,7 @@ version = VERSION hidden = FALSE dependencies[] = system_null_version_test -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/system_test.info b/docroot/modules/simpletest/tests/system_test.info index 2838e231..ba97863c 100644 --- a/docroot/modules/simpletest/tests/system_test.info +++ b/docroot/modules/simpletest/tests/system_test.info @@ -6,7 +6,7 @@ core = 7.x files[] = system_test.module hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/taxonomy_nodes_test.info b/docroot/modules/simpletest/tests/taxonomy_nodes_test.info index 8bc75dd5..2a83f816 100644 --- a/docroot/modules/simpletest/tests/taxonomy_nodes_test.info +++ b/docroot/modules/simpletest/tests/taxonomy_nodes_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/taxonomy_test.info b/docroot/modules/simpletest/tests/taxonomy_test.info index dd401b77..dd4ec0bc 100644 --- a/docroot/modules/simpletest/tests/taxonomy_test.info +++ b/docroot/modules/simpletest/tests/taxonomy_test.info @@ -6,7 +6,7 @@ core = 7.x hidden = TRUE dependencies[] = taxonomy -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/theme_test.info b/docroot/modules/simpletest/tests/theme_test.info index aee9bad2..78e14bb1 100644 --- a/docroot/modules/simpletest/tests/theme_test.info +++ b/docroot/modules/simpletest/tests/theme_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/themes/test_basetheme/test_basetheme.info b/docroot/modules/simpletest/tests/themes/test_basetheme/test_basetheme.info index 982a2c9b..d3b76a9b 100644 --- a/docroot/modules/simpletest/tests/themes/test_basetheme/test_basetheme.info +++ b/docroot/modules/simpletest/tests/themes/test_basetheme/test_basetheme.info @@ -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 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/themes/test_subtheme/test_subtheme.info b/docroot/modules/simpletest/tests/themes/test_subtheme/test_subtheme.info index 993272e4..c3731fc0 100644 --- a/docroot/modules/simpletest/tests/themes/test_subtheme/test_subtheme.info +++ b/docroot/modules/simpletest/tests/themes/test_subtheme/test_subtheme.info @@ -6,7 +6,7 @@ hidden = TRUE settings[subtheme_override] = subtheme value -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/themes/test_theme/test_theme.info b/docroot/modules/simpletest/tests/themes/test_theme/test_theme.info index 0217410b..a426e7aa 100644 --- a/docroot/modules/simpletest/tests/themes/test_theme/test_theme.info +++ b/docroot/modules/simpletest/tests/themes/test_theme/test_theme.info @@ -17,7 +17,7 @@ stylesheets[all][] = system.base.css settings[theme_test_setting] = default value -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/themes/test_theme_nyan_cat/test_theme_nyan_cat.info b/docroot/modules/simpletest/tests/themes/test_theme_nyan_cat/test_theme_nyan_cat.info index 6d3850a2..a73b46e7 100644 --- a/docroot/modules/simpletest/tests/themes/test_theme_nyan_cat/test_theme_nyan_cat.info +++ b/docroot/modules/simpletest/tests/themes/test_theme_nyan_cat/test_theme_nyan_cat.info @@ -4,7 +4,7 @@ core = 7.x hidden = TRUE engine = nyan_cat -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/update_script_test.info b/docroot/modules/simpletest/tests/update_script_test.info index 16415489..081a97ed 100644 --- a/docroot/modules/simpletest/tests/update_script_test.info +++ b/docroot/modules/simpletest/tests/update_script_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/update_test_1.info b/docroot/modules/simpletest/tests/update_test_1.info index 191cd5f0..2eb0f809 100644 --- a/docroot/modules/simpletest/tests/update_test_1.info +++ b/docroot/modules/simpletest/tests/update_test_1.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/update_test_2.info b/docroot/modules/simpletest/tests/update_test_2.info index 191cd5f0..2eb0f809 100644 --- a/docroot/modules/simpletest/tests/update_test_2.info +++ b/docroot/modules/simpletest/tests/update_test_2.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/update_test_3.info b/docroot/modules/simpletest/tests/update_test_3.info index 191cd5f0..2eb0f809 100644 --- a/docroot/modules/simpletest/tests/update_test_3.info +++ b/docroot/modules/simpletest/tests/update_test_3.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/url_alter_test.info b/docroot/modules/simpletest/tests/url_alter_test.info index 10c2943e..9bb1de89 100644 --- a/docroot/modules/simpletest/tests/url_alter_test.info +++ b/docroot/modules/simpletest/tests/url_alter_test.info @@ -5,7 +5,7 @@ package = Testing version = VERSION hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/simpletest/tests/xmlrpc_test.info b/docroot/modules/simpletest/tests/xmlrpc_test.info index e1fb22d8..a3bb20cf 100644 --- a/docroot/modules/simpletest/tests/xmlrpc_test.info +++ b/docroot/modules/simpletest/tests/xmlrpc_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/statistics/statistics.info b/docroot/modules/statistics/statistics.info index 3bdfd4d4..a6940028 100644 --- a/docroot/modules/statistics/statistics.info +++ b/docroot/modules/statistics/statistics.info @@ -6,7 +6,7 @@ core = 7.x files[] = statistics.test configure = admin/config/system/statistics -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/syslog/syslog.info b/docroot/modules/syslog/syslog.info index 8077233e..ce327145 100644 --- a/docroot/modules/syslog/syslog.info +++ b/docroot/modules/syslog/syslog.info @@ -6,7 +6,7 @@ core = 7.x files[] = syslog.test configure = admin/config/development/logging -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/system/system.info b/docroot/modules/system/system.info index 28520578..3d60d051 100644 --- a/docroot/modules/system/system.info +++ b/docroot/modules/system/system.info @@ -12,7 +12,7 @@ files[] = system.test required = TRUE configure = admin/config/system -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/system/system.module b/docroot/modules/system/system.module index ba5da73f..5522b86f 100644 --- a/docroot/modules/system/system.module +++ b/docroot/modules/system/system.module @@ -4093,6 +4093,25 @@ function system_admin_paths() { * Implements hook_file_download(). */ function system_file_download($uri) { + $scheme = file_uri_scheme($uri); + if (file_stream_wrapper_valid_scheme($scheme)) { + $target = file_uri_target($uri); + if ($target !== FALSE) { + if (!in_array($scheme, variable_get('file_sa_core_2023_005_schemes', array()))) { + if (DIRECTORY_SEPARATOR !== '/') { + $class = file_stream_wrapper_get_class($scheme); + if (is_subclass_of($class, DrupalLocalStreamWrapper::class)) { + $target = str_replace(DIRECTORY_SEPARATOR, '/', $target); + } + } + $parts = explode('/', $target); + if (array_intersect($parts, array('.', '..'))) { + return -1; + } + } + } + } + $core_schemes = array('public', 'private', 'temporary'); $additional_public_schemes = array_diff(variable_get('file_additional_public_schemes', array()), $core_schemes); if ($additional_public_schemes) { diff --git a/docroot/modules/system/tests/cron_queue_test.info b/docroot/modules/system/tests/cron_queue_test.info index 534ed01d..84a5c6dd 100644 --- a/docroot/modules/system/tests/cron_queue_test.info +++ b/docroot/modules/system/tests/cron_queue_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/system/tests/system_cron_test.info b/docroot/modules/system/tests/system_cron_test.info index 94ff1511..9396fe9b 100644 --- a/docroot/modules/system/tests/system_cron_test.info +++ b/docroot/modules/system/tests/system_cron_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/taxonomy/taxonomy.info b/docroot/modules/taxonomy/taxonomy.info index c4e48626..cf0347ae 100644 --- a/docroot/modules/taxonomy/taxonomy.info +++ b/docroot/modules/taxonomy/taxonomy.info @@ -8,7 +8,7 @@ files[] = taxonomy.module files[] = taxonomy.test configure = admin/structure/taxonomy -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/toolbar/toolbar.info b/docroot/modules/toolbar/toolbar.info index d041fb99..a4bceef1 100644 --- a/docroot/modules/toolbar/toolbar.info +++ b/docroot/modules/toolbar/toolbar.info @@ -5,7 +5,7 @@ package = Core version = VERSION files[] = toolbar.test -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/tracker/tracker.info b/docroot/modules/tracker/tracker.info index 47320b07..4866487d 100644 --- a/docroot/modules/tracker/tracker.info +++ b/docroot/modules/tracker/tracker.info @@ -6,7 +6,7 @@ version = VERSION core = 7.x files[] = tracker.test -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/translation/tests/translation_test.info b/docroot/modules/translation/tests/translation_test.info index ec29b208..6b6f0ca9 100644 --- a/docroot/modules/translation/tests/translation_test.info +++ b/docroot/modules/translation/tests/translation_test.info @@ -5,7 +5,7 @@ package = Testing version = VERSION hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/translation/translation.info b/docroot/modules/translation/translation.info index 2bba716d..4f39442e 100644 --- a/docroot/modules/translation/translation.info +++ b/docroot/modules/translation/translation.info @@ -6,7 +6,7 @@ version = VERSION core = 7.x files[] = translation.test -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/trigger/tests/trigger_test.info b/docroot/modules/trigger/tests/trigger_test.info index 63918697..0e92255e 100644 --- a/docroot/modules/trigger/tests/trigger_test.info +++ b/docroot/modules/trigger/tests/trigger_test.info @@ -4,7 +4,7 @@ package = Testing core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/trigger/trigger.info b/docroot/modules/trigger/trigger.info index 21b85526..01cbd7e1 100644 --- a/docroot/modules/trigger/trigger.info +++ b/docroot/modules/trigger/trigger.info @@ -6,7 +6,7 @@ core = 7.x files[] = trigger.test configure = admin/structure/trigger -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/update/tests/aaa_update_test.info b/docroot/modules/update/tests/aaa_update_test.info index 2e43d154..82981d43 100644 --- a/docroot/modules/update/tests/aaa_update_test.info +++ b/docroot/modules/update/tests/aaa_update_test.info @@ -4,7 +4,7 @@ package = Testing core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/update/tests/bbb_update_test.info b/docroot/modules/update/tests/bbb_update_test.info index dcd1701f..25d778ca 100644 --- a/docroot/modules/update/tests/bbb_update_test.info +++ b/docroot/modules/update/tests/bbb_update_test.info @@ -4,7 +4,7 @@ package = Testing core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/update/tests/ccc_update_test.info b/docroot/modules/update/tests/ccc_update_test.info index a220c832..469a2589 100644 --- a/docroot/modules/update/tests/ccc_update_test.info +++ b/docroot/modules/update/tests/ccc_update_test.info @@ -4,7 +4,7 @@ package = Testing core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/update/tests/themes/update_test_admintheme/update_test_admintheme.info b/docroot/modules/update/tests/themes/update_test_admintheme/update_test_admintheme.info index 4fed03ed..b6118f62 100644 --- a/docroot/modules/update/tests/themes/update_test_admintheme/update_test_admintheme.info +++ b/docroot/modules/update/tests/themes/update_test_admintheme/update_test_admintheme.info @@ -3,7 +3,7 @@ description = Test theme which is used as admin theme. core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/update/tests/themes/update_test_basetheme/update_test_basetheme.info b/docroot/modules/update/tests/themes/update_test_basetheme/update_test_basetheme.info index 765e2c01..c32ac7b6 100644 --- a/docroot/modules/update/tests/themes/update_test_basetheme/update_test_basetheme.info +++ b/docroot/modules/update/tests/themes/update_test_basetheme/update_test_basetheme.info @@ -3,7 +3,7 @@ description = Test theme which acts as a base theme for other test subthemes. core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/update/tests/themes/update_test_subtheme/update_test_subtheme.info b/docroot/modules/update/tests/themes/update_test_subtheme/update_test_subtheme.info index 4f57be64..702be113 100644 --- a/docroot/modules/update/tests/themes/update_test_subtheme/update_test_subtheme.info +++ b/docroot/modules/update/tests/themes/update_test_subtheme/update_test_subtheme.info @@ -4,7 +4,7 @@ core = 7.x base theme = update_test_basetheme hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/update/tests/update_test.info b/docroot/modules/update/tests/update_test.info index 8c9ce8f7..631b6b14 100644 --- a/docroot/modules/update/tests/update_test.info +++ b/docroot/modules/update/tests/update_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/update/update.info b/docroot/modules/update/update.info index c8d8224e..96229d73 100644 --- a/docroot/modules/update/update.info +++ b/docroot/modules/update/update.info @@ -6,7 +6,7 @@ core = 7.x files[] = update.test configure = admin/reports/updates/settings -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/user/tests/anonymous_user_unblock_test.info b/docroot/modules/user/tests/anonymous_user_unblock_test.info index 93359602..98823551 100644 --- a/docroot/modules/user/tests/anonymous_user_unblock_test.info +++ b/docroot/modules/user/tests/anonymous_user_unblock_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/user/tests/user_email_validation_test.info b/docroot/modules/user/tests/user_email_validation_test.info index 8c439c5d..417027aa 100644 --- a/docroot/modules/user/tests/user_email_validation_test.info +++ b/docroot/modules/user/tests/user_email_validation_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/user/tests/user_flood_test.info b/docroot/modules/user/tests/user_flood_test.info index e32c7689..eb4df553 100644 --- a/docroot/modules/user/tests/user_flood_test.info +++ b/docroot/modules/user/tests/user_flood_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/user/tests/user_form_test.info b/docroot/modules/user/tests/user_form_test.info index d44f8855..614b022c 100644 --- a/docroot/modules/user/tests/user_form_test.info +++ b/docroot/modules/user/tests/user_form_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/user/tests/user_session_test.info b/docroot/modules/user/tests/user_session_test.info index f042beba..aa941765 100644 --- a/docroot/modules/user/tests/user_session_test.info +++ b/docroot/modules/user/tests/user_session_test.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/modules/user/user.info b/docroot/modules/user/user.info index 4a9a39f2..c581e560 100644 --- a/docroot/modules/user/user.info +++ b/docroot/modules/user/user.info @@ -9,7 +9,7 @@ required = TRUE configure = admin/config/people stylesheets[all][] = user.css -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/profiles/minimal/minimal.info b/docroot/profiles/minimal/minimal.info index e796c8a4..cf8b2dfe 100644 --- a/docroot/profiles/minimal/minimal.info +++ b/docroot/profiles/minimal/minimal.info @@ -5,7 +5,7 @@ core = 7.x dependencies[] = block dependencies[] = dblog -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/profiles/standard/standard.info b/docroot/profiles/standard/standard.info index 3dd1b05b..9b7fff84 100644 --- a/docroot/profiles/standard/standard.info +++ b/docroot/profiles/standard/standard.info @@ -24,7 +24,7 @@ dependencies[] = field_ui dependencies[] = file dependencies[] = rdf -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info b/docroot/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info index ec7e2580..d4adb95c 100644 --- a/docroot/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info +++ b/docroot/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info @@ -6,7 +6,7 @@ core = 7.x hidden = TRUE files[] = drupal_system_listing_compatible_test.test -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info b/docroot/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info index 7689a736..21bea5af 100644 --- a/docroot/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info +++ b/docroot/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info @@ -8,7 +8,7 @@ version = VERSION core = 6.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/profiles/testing/testing.info b/docroot/profiles/testing/testing.info index 04789c81..36003ac1 100644 --- a/docroot/profiles/testing/testing.info +++ b/docroot/profiles/testing/testing.info @@ -4,7 +4,7 @@ version = VERSION core = 7.x hidden = TRUE -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/themes/bartik/bartik.info b/docroot/themes/bartik/bartik.info index 332e6890..4cf04e09 100644 --- a/docroot/themes/bartik/bartik.info +++ b/docroot/themes/bartik/bartik.info @@ -34,7 +34,7 @@ regions[footer] = Footer settings[shortcut_module_link] = 0 -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/themes/garland/garland.info b/docroot/themes/garland/garland.info index 5e7ceace..f943b86a 100644 --- a/docroot/themes/garland/garland.info +++ b/docroot/themes/garland/garland.info @@ -7,7 +7,7 @@ stylesheets[all][] = style.css stylesheets[print][] = print.css settings[garland_width] = fluid -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/themes/seven/seven.info b/docroot/themes/seven/seven.info index 1487b7e6..725382ba 100644 --- a/docroot/themes/seven/seven.info +++ b/docroot/themes/seven/seven.info @@ -13,7 +13,7 @@ regions[page_bottom] = Page bottom regions[sidebar_first] = First sidebar regions_hidden[] = sidebar_first -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915" diff --git a/docroot/themes/stark/stark.info b/docroot/themes/stark/stark.info index 6798603e..c018183d 100644 --- a/docroot/themes/stark/stark.info +++ b/docroot/themes/stark/stark.info @@ -5,7 +5,7 @@ version = VERSION core = 7.x stylesheets[all][] = layout.css -; Information added by Drupal.org packaging script on 2023-03-15 -version = "7.95" +; Information added by Drupal.org packaging script on 2023-04-19 +version = "7.96" project = "drupal" -datestamp = "1678902530" +datestamp = "1681921915"