WordPress build repository browser

Timeline

07/27/2024: Today

16:43 Changeset [58215] by karmatosed
  • trunk/wp-content/themes/twentytwenty/style-rtl.css
  • trunk/wp-content/themes/twentytwenty/style.css
  • trunk/wp-includes/version.php

Twenty Twenty: Calendar and Table blocks do not apply custom font size.

This fixes adding a custom font size to a Calendar and Table block. This was only an issue for custom font size entering.

Props nidhidhandhukiya, yurajsinj2211, ankit-k-gupta, anveshika, sabernhardt, darshitrajyaguru97, shailu25, umesh84, SergeyBiryukov.
Fixes #59996, #56157.

Built from https://develop.svn.wordpress.org/trunk@58819

12:34 Changeset [58214] by karmatosed
  • trunk/wp-content/themes/twentytwentythree/styles/whisper.json
  • trunk/wp-includes/version.php

Twenty Twenty-Three: Fixes unnecessary borders for links images in Whisper variation.

This fixes the Whisper variation having borders for links images. Other styles did not have this.

Props colorful-tones, sabernhardt.
Fixes #57368.

Built from https://develop.svn.wordpress.org/trunk@58818

10:14 Changeset [58213] by karmatosed
  • trunk/wp-content/themes/twentytwenty/assets/css/editor-style-block-rtl.css
  • trunk/wp-content/themes/twentytwenty/assets/css/editor-style-block.css
  • trunk/wp-content/themes/twentytwenty/style-rtl.css
  • trunk/wp-content/themes/twentytwenty/style.css
  • trunk/wp-includes/version.php

Twenty Twenty: Adds Plain Style into Quote block.

Plan style was missing for the Quote block. This brings it in as should have been originally.

Props kajalgohel, devtanbir, costdev, sabernhardt.
Fixes #56011.

Built from https://develop.svn.wordpress.org/trunk@58817

09:37 Changeset [58212] by karmatosed
  • trunk/wp-content/themes/twentyeleven/editor-style.css
  • trunk/wp-content/themes/twentyeleven/style.css
  • trunk/wp-content/themes/twentytwelve/editor-style.css
  • trunk/wp-content/themes/twentytwelve/style.css
  • trunk/wp-includes/version.php

Multiple themes: Fixes Code block not adjusting to font size changes.

This resolves the Code block not changing when the font sizes are switched in Twenty Eleven and Twenty Twelve. The solution is the same as used for other code block adjustments for font sizes.

Props viralsampat, sabernhardt.
Fixes #61753.

Built from https://develop.svn.wordpress.org/trunk@58816

09:24 Changeset [58211] by karmatosed
  • trunk/wp-content/themes/twentythirteen/css/editor-style.css
  • trunk/wp-content/themes/twentythirteen/style.css
  • trunk/wp-includes/version.php

Twenty Thirteen: Fixes Code block not adjusting to font size changes.

This resolves the Code block not changing when the font sizes are switched. This theme uses a 14 px size for both and this uses inherit when nested inside pre tag.

Props viralsampat, sabernhardt.
Fixes #61697.

Built from https://develop.svn.wordpress.org/trunk@58815

07:52 Changeset [58210] by SergeyBiryukov
  • trunk/wp-includes/formatting.php
  • trunk/wp-includes/version.php

Docs: Clarify the description for wp_strip_all_tags().

Follow-up to [11929], [27042].

Props coffee2code, krupalpanchal, mukesh27.
Fixes #61759.
Built from https://develop.svn.wordpress.org/trunk@58814

00:27 Changeset [58209] by peterwilsoncc
  • trunk/wp-admin/includes/credits.php
  • trunk/wp-admin/includes/dashboard.php
  • trunk/wp-admin/includes/import.php
  • trunk/wp-admin/includes/plugin-install.php
  • trunk/wp-admin/includes/theme.php
  • trunk/wp-admin/includes/translation-install.php
  • trunk/wp-admin/includes/update.php
  • trunk/wp-includes/functions.php
  • trunk/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php
  • trunk/wp-includes/script-loader.php
  • trunk/wp-includes/update.php
  • trunk/wp-includes/version.php

General: Introduce wp_get_wp_version() to get unmodified version.

Introduces wp_get_wp_version() to get an unmodified value of $wp_version from wp-includes/version.php. Some plugins modify the global in an attempt to improve security through obscurity. This practice can cause errors in WordPress so the ability to get an unmodified version is needed.

Replaces instances within the code base in which version.php was required in order to get an unmodified value. script-loader.php is intentionally excluded from the replacements as the function is not always available to the file.

Props debarghyabanerjee, afragen, costdev.
See #61627.

Built from https://develop.svn.wordpress.org/trunk@58813

07/26/2024: Yesterday

07:56 Changeset [58208] by SergeyBiryukov
  • trunk/wp-includes/class-wp-walker.php
  • trunk/wp-includes/version.php

General: Cast $max_depth and $depth to an integer in the Walker class.

This ensures that the arguments are correctly interpreted when passed as a query string, i.e. when wp_parse_args() is involved. For example, wp_list_pages( 'depth=0' ) should display a list of all pages to the maximum depth.

Follow-up to [57848].

Props freibergergarcia, peterwilsoncc, ahortin.
Fixes #61749.
Built from https://develop.svn.wordpress.org/trunk@58812

07/25/2024:

23:04 Changeset [58207] by peterwilsoncc
  • trunk/wp-includes/option.php
  • trunk/wp-includes/version.php

Options, Meta APIs: Prevent Single Site installs using network notoptions cache.

Modifies the caching of notoptions in delete_network_option() to ensure that the network cache is bypassed on single site installs.

On single site installs the incorrect caching was causing the notoptions cache to remain populated once a deleted option was subsequently added or updated.

Follow up to [58782].

Props bjorsch, pbearne.
Fixes #61730.
See #61484.

Built from https://develop.svn.wordpress.org/trunk@58811

22:40 Changeset [58206] by peterwilsoncc
  • trunk/wp-admin/includes/upgrade.php
  • trunk/wp-admin/user-edit.php
  • trunk/wp-includes/version.php

General: Update English Gravatar links.

Replace links to en.gravatar.com with links to gravatar.com as the english site now uses the base domain. This avoids an unnecessary redirect for english language sites.

The links remain translatable for non-english versions of WordPress.

Props narenin, knutsp.
Fixes #61424.

Built from https://develop.svn.wordpress.org/trunk@58810

22:38 Changeset [58205] by SergeyBiryukov
  • trunk/wp-includes/comment-template.php
  • trunk/wp-includes/version.php

Comments: Only type cast a scalar $comment_id in get_comment_author_link().

This aims to resolve a fatal error when the incoming $comment_id is an instance of WP_Comment (or any object) without a comment_ID property defined, or if it's empty:

Object of class WP_Comment could not be converted to string

This commit mirrors the changes previously made for a similar code fragment in get_comment_author().

Includes:

  • Unit tests to demonstrate the fatal error and validate the fix.
  • Changing the default value for a non-existent comment ID in get_comment_author() from an empty string to zero as a numeric string, for consistency with get_comment_ID().

Follow-up to [52818], [55289], [58335], [58755].

Props narenin, mukesh27, iflairwebtechnologies, umeshsinghin, SergeyBiryukov.
Fixes #61715.
Built from https://develop.svn.wordpress.org/trunk@58809

16:35 Changeset [58204] by jorbin
  • branches/6.5/wp-includes/functions.php
  • branches/6.5/wp-includes/version.php

Filesystem: Normalize allowed_files so comparison is apples to apples.

In [58470] a change was made to normalize the filename in validate_file, however this leads to instances where the list of files that are allowed aren't normalized such as in the theme editor. By normalizing the array, the comparison is apples to apples.

Reviewed by hellofromTonya.
Merges 58570 to the 6.5 branch.

Fixes #61488.
Props jorbin, hellofromtonya, swissspidy, misulicus, script2see, Presskopp, audrasjb, peterwilsoncc, siliconforks, littler.chicken, paulkevan,

Built from https://develop.svn.wordpress.org/branches/6.5@58808

07/24/2024:

21:42 Changeset [58203] by flixos90
  • trunk/wp-includes/link-template.php
  • trunk/wp-includes/version.php

Taxonomy: Ensure get_edit_term_link() produces the correct result when called without taxonomy.

This fixes an oversight missed in [36646].

Props debarghyabanerjee.
Fixes #61726.
See #35922.

Built from https://develop.svn.wordpress.org/trunk@58807

18:41 Changeset [58202] by dmsnell
  • trunk/wp-includes/html-api/class-wp-html-open-elements.php
  • trunk/wp-includes/html-api/class-wp-html-processor.php
  • trunk/wp-includes/version.php

HTML API: Add TABLE support in HTML Processor.

As part of work to add more spec support to the HTML API, this patch adds
support for various table-related insertion modes. This includes support
for tables, table rows, table cells, table column groups, etc...

Developed in https://github.com/wordpress/wordpress-develop/pull/6040
Discussed in https://core.trac.wordpress.org/ticket/61576

Props: dmsnell, jonsurrell.
See #61576.

Built from https://develop.svn.wordpress.org/trunk@58806

17:32 Changeset [58201] by hellofromTonya
  • branches/6.6/wp-admin/includes/meta-boxes.php
  • branches/6.6/wp-includes/media-template.php
  • branches/6.6/wp-includes/version.php

I18N: Correctly output the None translatable strings.

Includes updating the context to match the pre-existing block editor translations.

Follow-up to [58284].

Reviewed by hellofromTonya.
Merges [58774] to the 6.6 branch.

Props sabernhardt, Marius84.
Fixes #61714.
Built from https://develop.svn.wordpress.org/branches/6.6@58805

16:23 Changeset [58200] by hellofromTonya
  • trunk/wp-admin/customize.php
  • trunk/wp-includes/version.php

Customize: Sanitize autofocus URL parameter as an array.

[58069] introduced calling sanitize_text_field() with $_REQUEST['autofocus'] (which is an array) and setting its default to a string. This fix restores the array data type for autofocus.

The fix also relocates the unsplash for url, return, and autofocus before sanitizing.

Follow-up to [58069], [34269], [29026], [21028].

Props jamesros161, swissspidy, dlh, audrasjb, hellofromTonya, ironprogrammer.
Fixes #61561.
Built from https://develop.svn.wordpress.org/trunk@58804

15:10 Changeset [58199] by SergeyBiryukov
  • trunk/wp-includes/version.php

Tests: Use more specific assertions in get_comment_author() tests.

Follow-up to [58335].

See #61530.
Built from https://develop.svn.wordpress.org/trunk@58803

14:40 Changeset [58198] by Bernhard Reiter
  • branches/6.6/wp-includes/block-template-utils.php
  • branches/6.6/wp-includes/version.php

Block Hooks: Don't erase post content if it isn't changed by client.

The inject_ignored_hooked_blocks_metadata_attributes filter that is attached to both the rest_pre_insert_wp_template and rest_pre_insert_wp_template_part hooks receives a stdClass object from the Templates REST API controller that contains all fields that the client would like to modify when making a POST request (plus the id to identify the relevant template or template part, respectively).

There are cases when the post_content field is not set, e.g. when the client would like to rename an existing template (in which case it would only set the title field).

Prior to this changeset, the filter would erroneously apply the Block Hooks algorithm to the non-existent post_content field regardless, which would result in it being set to the empty string ''. As a consequence, renaming a template would have the unwanted side effect of wiping its contents.

This changeset fixes the issue by returning early from the filter if the post_content field is not set.

Reviewed by gziolo.
Merges [58785] to the 6.6 branch.

Props alshakero, bernhard-reiter.
Fixes #61550.
Built from https://develop.svn.wordpress.org/branches/6.6@58802

14:11 Changeset [58197] by Bernhard Reiter
  • trunk/wp-includes/blocks.php
  • trunk/wp-includes/version.php

block.json: Allow passing PHP filename as variations field.

Previously, the variations field in a block.json file could be used to provide a static list of the block's variations (i.e., an array). Alternatively, the block's variation_callback could be set during server-side block registration to point to a PHP function to generate those variations.

This changeset makes it so that the block.json variations field can be alternatively set to a string, which will be interpreted as the filename of a PHP file that generates the variations.

It is loosely modeled after [54132], which introduced the render field for block.json, as a way to point to a PHP file instead of providing a render_callback.

Props bernhard-reiter, gziolo.
Fixes #61280.
Built from https://develop.svn.wordpress.org/trunk@58801

14:07 Changeset [58196] by desrosj
  • trunk/wp-includes/js/dist/vendor/regenerator-runtime.js
  • trunk/wp-includes/js/dist/vendor/regenerator-runtime.min.js
  • trunk/wp-includes/script-loader.php
  • trunk/wp-includes/version.php

External Libraries: Update the regenerator-runtime library.

This updates the regenerator-runtime library to version 0.14.1.

This library has not been used by Core itself in quite a while and only maintained as a courtesy. Any projects relying on regenerator-runtime should reevaluate their usage.

Props manooweb.
Fixes #60515.
Built from https://develop.svn.wordpress.org/trunk@58800

11:31 Changeset [58195] by czapla
  • trunk/wp-includes/version.php

Tests: Removes the obsolete Block Binding unregistration

Follow-up to [58798].
Props santosguillamot, cbravobernal, gziolo.
See #61641.

Built from https://develop.svn.wordpress.org/trunk@58799

10:59 Changeset [58194] by cbravobernal
  • trunk/wp-includes/block-editor.php
  • trunk/wp-includes/version.php

Block Bindings: Adds sources in the editor settings to consume them in the client

Adds a new property blockBindingsSources to the editor settings to expose the block bindings sources registered in the server.

Props santosguillamot, cbravobernal, gziolo, artemiosans.
Fixes #61641.

Built from https://develop.svn.wordpress.org/trunk@58798

00:26 Changeset [58193] by noisysocks
  • trunk/wp-includes/block-supports/background.php
  • trunk/wp-includes/class-wp-theme-json-resolver.php
  • trunk/wp-includes/class-wp-theme-json.php
  • trunk/wp-includes/global-styles-and-settings.php
  • trunk/wp-includes/version.php

Block themes: Enable block-level background image styles

Allows defining background images for blocks in theme.json.

Syncs PHP changes from https://github.com/WordPress/gutenberg/pull/60100.

Props ramonopoly, aaronrobertshaw.
Fixes #61588.

Built from https://develop.svn.wordpress.org/trunk@58797

07/23/2024:

21:52 Changeset [58192] by karmatosed
  • trunk/wp-content/themes/twentytwenty/style-rtl.css
  • trunk/wp-content/themes/twentytwenty/style.css
  • trunk/wp-includes/version.php

Twenty Twenty: Fixes Quote block border not reflecting alignment.

This resolves the border not also aligning with the quote block. When this theme was built the editor used style attributes for text alignment. This patch updates existing rules for center and right aligned quote blocks.

Props viralsampat, poena, sabernhardt.
Fixes #61132.

Built from https://develop.svn.wordpress.org/trunk@58796

18:39 Changeset [58191] by desrosj
  • trunk/wp-includes/version.php

Build/Test Tools: Update third-party GitHub Actions.

The following third-party actions have been updated to their latest versions.

  • shivammathur/setup-php from 2.30.0 to 2.31.1.
  • actions/setup-node from 4.0.2 to 4.0.3.
  • actions/cache from 4.0.1 to 4.0.2.
  • actions/upload-artifact from 4.3.1 to 4.3.4.
  • slackapi/slack-github-action from 1.25.0 to 1.26.0.
  • codecov/codecov-action from 4.1.0 to 4.5.0.

See #61564.
Built from https://develop.svn.wordpress.org/trunk@58789

16:01 Changeset [58190] by jorbin
  • branches/6.6/wp-includes/version.php

Post WordPress 6.6.1 version bump.

Built from https://develop.svn.wordpress.org/branches/6.6@58788

15:14 Changeset [58189] by jorbin
  • tags/6.6.1

Tag 6.6.1
Built from https://develop.svn.wordpress.org/tags/6.6.1@58787

15:11 Changeset [58188] by jorbin
  • branches/6.6/wp-admin/about.php
  • branches/6.6/wp-includes/version.php

WordPress 6.6.1

Built from https://develop.svn.wordpress.org/branches/6.6@58786

13:43 Changeset [58187] by Bernhard Reiter
  • trunk/wp-includes/block-template-utils.php
  • trunk/wp-includes/version.php

Block Hooks: Don't erase post content if it isn't changed by client.

The inject_ignored_hooked_blocks_metadata_attributes filter that is attached to both the rest_pre_insert_wp_template and rest_pre_insert_wp_template_part hooks receives a stdClass object from the Templates REST API controller that contains all fields that the client would like to modify when making a POST request (plus the id to identify the relevant template or template part, respectively).

There are cases when the post_content field is not set, e.g. when the client would like to rename an existing template (in which case it would only set the title field).

Prior to this changeset, the filter would erroneously apply the Block Hooks algorithm to the non-existent post_content field regardless, which would result in it being set to the empty string ''. As a consequence, renaming a template would have the unwanted side effect of wiping its contents.

This changeset fixes the issue by returning early from the filter if the post_content field is not set.

Props alshakero, bernhard-reiter.
Fixes #61550.
Built from https://develop.svn.wordpress.org/trunk@58785

09:59 Changeset [58186] by karmatosed
  • trunk/wp-content/themes/twentytwenty/assets/css/editor-style-block-rtl.css
  • trunk/wp-content/themes/twentytwenty/assets/css/editor-style-block.css
  • trunk/wp-content/themes/twentytwenty/style-rtl.css
  • trunk/wp-content/themes/twentytwenty/style.css
  • trunk/wp-includes/version.php

Twenty Twenty: Fixes incorrect colour in editor for seperator block.

This resolves the seperator block color settings ordering. They were displaying incorrectly due to ruleset problems. This edits the order for the front end also.

Props bhaveshdesai13, aniketpatel, miguelaxcar, nidhidhandhukiya, poena, pavanpatil1, sabernhardr.
Fixes #57544.

Built from https://develop.svn.wordpress.org/trunk@58784

07:51 Changeset [58185] by youknowriad
  • trunk/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php
  • trunk/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php
  • trunk/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php
  • trunk/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php
  • trunk/wp-includes/version.php

REST API: Remove post status prefix from REST API responses.

When using the /posts or /pages endpoints, for private posts or pages, you get the following title property: { raw: "Some title", rendered: "Private: Some title" }
this commit removes the prefix from rendered private posts titles (just like what we do for protected posts)

Props youknowriad, swissspidy, timothyblynjacobs, sergeybiryukov, ramonopoly.
Fixes #61639.
Built from https://develop.svn.wordpress.org/trunk@58783

00:27 Changeset [58184] by peterwilsoncc
  • trunk/wp-includes/option.php
  • trunk/wp-includes/version.php

Options, Meta APIs: Prime notoptions cache when deleting options.

Prime the notoptions cache within delete_option and delete_network_option to avoid the need for a database query if get_option or get_network_option is subsequently called.

Adds some associated tests to ensure that an option is cleared from the notoptions cache when an option is added either via add_option, update_option or their network option equivalent.

Props pbearne, mukesh27.
Fixes #61484.

Built from https://develop.svn.wordpress.org/trunk@58782

07/22/2024:

23:21 Changeset [58183] by dmsnell
  • trunk/wp-includes/html-api/class-wp-html-processor.php
  • trunk/wp-includes/version.php

HTML API: Fix unsupported insertion mode messages.

Insertion modes in an HTML parser may include instructions like "process
the token in the IN HEAD insertion mode." The rules do not change the
insertion mode of the parser, but the errors are triggered outside of the
rules for the current insertion mode. These will be misleading when
bailing on these instructions, because it will point someone to the wrong
place in the code to find the source of the error.

In this patch all of the bail-points due to lacking insertion mode support
are hard-coded to better orient someone to the section of the code lacking
support for handling the input HTML.

Developed in https://github.com/wordpress/wordpress-develop/pull/7043
Discussed in https://core.trac.wordpress.org/ticket/61576

Follow-up to [58679].

Props: dmsnell, jonsurrell.
See #61576.

Built from https://develop.svn.wordpress.org/trunk@58781

22:51 Changeset [58182] by dmsnell
  • trunk/wp-includes/version.php

HTML API: Remove empty test file after adding support for missing elements.

When support was added for the remaining tags in the IN BODY insertion mode, a test
file indicating that support was necessary for certain parts of the parser was
removed, but it wasn't removed from SVN when sending over the patch from git.

This patch removes that empty file so that the WPCS workflows pass.

Discussed in https://core.trac.wordpress.org/ticket/61576

Follow-up to [58779].

See #61576.

Built from https://develop.svn.wordpress.org/trunk@58780

22:24 Changeset [58181] by dmsnell
  • trunk/wp-includes/html-api/class-wp-html-active-formatting-elements.php
  • trunk/wp-includes/html-api/class-wp-html-open-elements.php
  • trunk/wp-includes/html-api/class-wp-html-processor-state.php
  • trunk/wp-includes/html-api/class-wp-html-processor.php
  • trunk/wp-includes/html-api/class-wp-html-tag-processor.php
  • trunk/wp-includes/html-api/class-wp-html-token.php
  • trunk/wp-includes/version.php

HTML API: Add missing tags in IN BODY insertion mode to HTML Processor.

As part of work to add more spec support to the HTML API, this patch adds
support for the remaining missing tags in the IN BODY insertion mode. Not
all of the added tags are supported, because in some cases they reset the
insertion mode and are reprocessed where they will be rejected.

This patch also improves the support of get_modifiable_text(), removing
a leading newline inside a LISTING, PRE, or TEXTAREA element.

Developed in https://github.com/WordPress/wordpress-develop/pull/6972
Discussed in https://core.trac.wordpress.org/ticket/61576

Props dmsnell, jonsurrell, westonruter.
See #61576.

Built from https://develop.svn.wordpress.org/trunk@58779

17:52 Changeset [58180] by karmatosed
  • trunk/wp-content/themes/twentytwenty/style-rtl.css
  • trunk/wp-content/themes/twentytwenty/style.css
  • trunk/wp-includes/version.php

Twenty Twenty: Fixes Customizer widget edit buttons being obstructed on smaller screens.

When the screen is smaller the edit buttons are obscured. This resolves that problem for the smaller screens and only targets the container for footer navigation and widgets.

Props sumitsingh, SergeyBiryukov, sabernhardt.
Fixes #49008.

Built from https://develop.svn.wordpress.org/trunk@58778

16:30 Changeset [58179] by karmatosed
  • trunk/wp-content/themes/twentysixteen/css/blocks.css
  • trunk/wp-includes/version.php

Twenty Sixteen: Fixes Quote block border width changes depending on font size.

When the font size is changed the border on the front was changing in width. This fix resolves that to make sure the width does not adjust.

Props nidhidhandhukiya, sabernhardt, kamran8176, pitamdey, shailu25.
Fixes #60239.

Built from https://develop.svn.wordpress.org/trunk@58777

15:36 Changeset [58178] by karmatosed
  • trunk/wp-content/themes/twentytwelve/css/ie.css
  • trunk/wp-content/themes/twentytwelve/style.css
  • trunk/wp-includes/version.php

Twenty Twelve: Fixes submenu hiding under slideshow block.

Whilst initially this could be thought to be solved in Jetpack due to submenus only having a z-index of 1 a fix is desirable. This brings in the suggested value.

Props robertghetau, SergeyBiryukov, sabernhardt, poena, narenin.
Fixes #55892.

Built from https://develop.svn.wordpress.org/trunk@58776

10:02 Changeset [58177] by youknowriad
  • trunk/wp-includes/js/dist/vendor/react-dom.js
  • trunk/wp-includes/js/dist/vendor/react-dom.min.js
  • trunk/wp-includes/js/dist/vendor/react-dom.min.js.LICENSE.txt
  • trunk/wp-includes/js/dist/vendor/react.js
  • trunk/wp-includes/js/dist/vendor/react.min.js
  • trunk/wp-includes/js/dist/vendor/react.min.js.LICENSE.txt
  • trunk/wp-includes/version.php

Build Tools: Use umd builds provided by React instead of bundling our own builds.

We tried moving away from the deprecated React UMD builds previously,
the problem we faced is that there's a warning that is triggered on the console because we're not using a separate impact for createRoot.

This warning has been removed in React 19 along with the removal of the UMD builds, so we should be able to revert this commit when we upgrade to React 19 but for now, we need to restore the usage of the umd builds.

Props mamaduka.
See #61324.
Built from https://develop.svn.wordpress.org/trunk@58775

07/21/2024:

18:58 Changeset [58176] by SergeyBiryukov
  • trunk/wp-admin/includes/meta-boxes.php
  • trunk/wp-includes/media-template.php
  • trunk/wp-includes/version.php

I18N: Correctly output the None translatable strings.

Includes updating the context to match the pre-existing block editor translations.

Follow-up to [58284].

Props sabernhardt, Marius84.
Fixes #61714.
Built from https://develop.svn.wordpress.org/trunk@58774

07/20/2024:

13:32 Changeset [58175] by SergeyBiryukov
  • trunk/wp-includes/media.php
  • trunk/wp-includes/version.php

Media: Check if content URL includes a hostname in wp_calculate_image_srcset().

This resolves an Undefined array key "host" PHP warning if WP_CONTENT_URL is set to a relative URL.

Follow-up to [58097].

Props mattraines, narenin, pamprn, SergeyBiryukov.
Fixes #61690.
Built from https://develop.svn.wordpress.org/trunk@58773

12:43 Changeset [58174] by karmatosed
  • trunk/wp-content/themes/twentyfifteen/css/editor-blocks.css
  • trunk/wp-includes/version.php

Twenty Fifteen: Fixes List Block with padding not having background color.

The List Block when had padding was not displaying the background color correctly. This only impacts the non-framed editor.

Props viralsampat, devtanbir, sabernhardt, deepakvijayan.
Fixes #60197.

Built from https://develop.svn.wordpress.org/trunk@58772

10:57 Changeset [58173] by karmatosed
  • trunk/wp-content/themes/twentyfifteen/inc/template-tags.php
  • trunk/wp-content/themes/twentysixteen/inc/template-tags.php
  • trunk/wp-includes/version.php

Multiple themes Fixes theme screen reader including text inside card.

The function twentysixteen_entry_meta included screen reader text inside the span property using the author mf class. This resolves that in both Twenty Sixteen and Twenty Fifteen. It should have the screen reader text inside the byline span but outside the author vcard span.

Props dshanske, laurelfulford, sabernhardt, shilu25.
Fixes #46233.

Built from https://develop.svn.wordpress.org/trunk@58771

10:08 Changeset [58172] by karmatosed
  • trunk/wp-content/themes/twentytwentyfour/patterns/page-home-portfolio-gallery.php
  • trunk/wp-content/themes/twentytwentyfour/patterns/testimonial-centered.php
  • trunk/wp-content/themes/twentytwentyfour/patterns/text-alternating-images.php
  • trunk/wp-content/themes/twentytwentyfour/patterns/text-centered-statement-small.php
  • trunk/wp-content/themes/twentytwentyfour/patterns/text-centered-statement.php
  • trunk/wp-content/themes/twentytwentyfour/patterns/text-faq.php
  • trunk/wp-content/themes/twentytwentyfour/patterns/text-project-details.php
  • trunk/wp-includes/version.php

Twenty Twenty-Four: Fixes typos in pattern descriptions.

There were a number of typos in the patterns. These came in [58111] with some additions having issues and so this resolves that.

Props tobifjellner, sabernhardt, audrasjb.
Fixes #61682.

Built from https://develop.svn.wordpress.org/trunk@58770

Note: See TracTimeline for information about the timeline view.