Commit Graph

42299 Commits

Author SHA1 Message Date
Jonathan Desrosiers
06b142aa62 Post WordPress 5.5.1 RC1 version bump.
git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48902 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-27 23:22:10 +00:00
Jonathan Desrosiers
bff2404fd2 WordPress 5.5.1 RC1.
git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48901 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-27 23:04:57 +00:00
Sergey Biryukov
adda1360aa Upgrade/Install: Only display the auto-update links on the Network Admin > Themes screen for themes that support the feature.
Follow-up to [48669], [48688].

Props afragen, pbiron, audrasjb, desrosj, SergeyBiryukov.
Merges [48899] to the 5.5 branch.
Fixes #51129.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48900 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-27 22:23:53 +00:00
Sergey Biryukov
bf21b6507b Script Loader: Disable concatenation for scripts with translations to ensure they are printed in the right order.
Props herregroen, ocean90, desrosj, mikeyarce, bobbingwide, audrasjb, johnbillion.
Merges [48897] to the 5.5 branch.
Fixes #50999.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48898 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-27 21:59:17 +00:00
Sergey Biryukov
d60dc322f3 Bootstrap/Load: Remove the ability to alter the list of environment types in wp_get_environment_type().
The intention of `wp_get_environment_type()` is to provide a consistent means of identifying the environment type, not of identifying a specific environment.

Actual environments should fit within one of the existing types: `local`, `development`, `staging`, or `production`. That should cover the types that plugins and themes might be concerned about when toggling functionality. 

Props johnbillion, joostdevalk, TimothyBlynJacobs, jeremyfelt, batmoo, claytoncollie, Clorith, markjaquith, garrett-eclipse, GaryJ, elrae.
Merges [48894] and [48895] to the 5.5 branch.
Fixes #50992.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48896 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-27 21:44:10 +00:00
Sergey Biryukov
b16bfc45f6 Tests: Update wp_add_inline_script() unit tests to account for the jquery handle being an alias for jquery-core again.
Follow-up to [48323], [48324], [48890].

Props davidbaumwald, audrasjb.
Merges [48892] to the 5.5 branch.
See #50919.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48893 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-27 21:06:13 +00:00
Sergey Biryukov
52cef7aeec Script Loader: Change the jquery handle back to an alias for jquery-core.
This ensures that `wp_localize_script( 'jquery', ... )` continues to work as expected, since `WP_Scripts::localize()` rewrites the `jquery` handle to `jquery-core` internally.

Follow-up to [48323].

Props mukesh27, rajeshsingh520, johnbillion, TimothyBlynJacobs, TobiasBg.
Merges [48890] to the 5.5 branch.
Fixes #50919.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48891 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-27 20:34:18 +00:00
Jonathan Desrosiers
db992211f2 Upgrade/Install: Pass details about the specific plugin and theme updates attempted to filters.
This adds an additional parameter to the `auto_plugin_update_send_email` and `auto_theme_update_send_email` filters to provide the additional context of which updates were attempted and their outcome. This will help plugin and theme auto-update emails to be better tailored to a site owner's liking.

Props audrasjb, Paddy Landau, desrosj.
Merges [48888] to the 5.5 branch.
Fixes #50988.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48889 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-27 19:32:31 +00:00
Jonathan Desrosiers
bb6615aa8a Build/Test Tools: Update the package lock file.
Follow up to [48884].

Merges [48886] to the 5.5 branch.
See #51151.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48887 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-27 19:05:55 +00:00
Jorge Costa
0c1b1e132a Editor: update packages.
The following package versions were changed:
@wordpress/block-directory: 1.13.6 -> 1.13.7
@wordpress/block-editor: 4.3.6 -> 4.3.7
@wordpress/block-library: 2.22.6 -> 2.22.7
@wordpress/components: 10.0.5 -> 10.0.6
@wordpress/edit-post: 3.21.6 -> 3.21.7
@wordpress/editor: 9.20.6 -> 9.20.7
@wordpress/format-library: 1.22.6 -> 1.22.7
@wordpress/list-reusable-blocks: 1.21.5 -> 1.21.6
@wordpress/nux: 3.20.5 -> 3.20.6
@wordpress/server-side-render: 1.16.5 -> 1.16.6
Includes PR WordPress/gutenberg#24828

Props nosolosw, desrosj, SergeyBiryukov, youknowriad.
Merges [48884] to the 5.5 branch.
Fixes: #51151.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48885 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-27 17:58:02 +00:00
Sergey Biryukov
61b9a7fd6e REST API: Fix multi-type schemas with integer fields.
In [48306] support for multi-typed schemas was improved to first detect the data type of the value before applying further validation. The `integer` data type was detected using the new `rest_is_integer` function. This function used logic, however, that assumed that the value had already passed an `is_numeric` check. This meant that if `integer` and `string` were both acceptable types, the value would always be considered an `integer` causing the later accurate type validation to fail.

This commit fixes the `rest_is_integer` logic to include an `is_numeric` check.

Props rtagliento, TimothyBlynJacobs.
Merges [48881] to the 5.5 branch.
Fixes #51146.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48883 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-27 14:43:40 +00:00
Sergey Biryukov
d67396c24b Taxonomy: Make sure wp_terms_checklist() and Walker_Category_Checklist::start_el() properly handle an array of strings as selected_cats or popular_cats values.
Even with these values documented as an array of integers, they can technically also accept an array of strings, e.g. as form results.

Add a unit test.

Props brianhogg, TimothyBlynJacobs, SergeyBiryukov.
Merges [48880] to the 5.5 branch.
Fixes #51137.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48882 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-27 03:06:22 +00:00
Sergey Biryukov
1699ff7f13 Tests: Update one more test to account for lazy-loading being disabled for custom logos by default.
Follow-up to [48870], [48874].

Props desrosj.
Merges [48878] to the 5.5 branch.
See #50933.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48879 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-27 02:03:23 +00:00
Sergey Biryukov
cac33d2984 Comments: Correct the check for reply element existence in comment-reply.js.
`document.getElementById()` returns `null` if no matching element was found, so the previous comparison didn't work as expected.

Follow-up to [47506].

Props mailnew2ster, sarahricker.
Merges [48876] to the 5.5 branch.
Fixes #38009.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48877 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-27 01:59:29 +00:00
Sergey Biryukov
8cab089517 Tests: Update unit tests to account for lazy-loading being disabled for custom logos by default.
Follow-up to [48870].

Merges [48874] to the 5.5 branch.
See #50933.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48875 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-27 01:56:05 +00:00
Peter Wilson
686262686d Sitemaps: Prevent incorrect redirection of paged sitemap requests.
Update `redirect_canonical()` to account for custom pagination and URL format used by sitemaps in order to follow standard practices.

Introduce the function `get_sitemap_url()` to simplify getting the index and provider URLs as needed.

Props jonathanstegall, pbiron, GamerZ, salvoaranzulla, peterwilsoncc.
Merges [48872] to the 5.5 branch.
Fixes #50910.



git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48873 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-27 01:35:31 +00:00
Jonathan Desrosiers
f14250e2a7 Media: Disable lazy-loading for custom logos by default.
Custom site logos are most commonly displayed above the fold, so lazy-loading is unnecessary.

Props demetris, khag7, johnbillion, rebasaurus, audrasjb.
Merges [48870] to the 5.5 branch.
Fixes #50933.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48871 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-27 01:08:23 +00:00
Sergey Biryukov
4636ab5143 Upgrade/Install: Make the check for empty home option in __get_option() more resilient.
This addresses a regression in [47808], where the `home` check expected an empty string to use `siteurl` as a fallback, but `wpdb::get_var()` returns `null` if the option is empty.

Props fjarrett.
Merges [48868] to the 5.5 branch.
Fixes #51011.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48869 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-26 17:05:54 +00:00
Sergey Biryukov
1a982564f1 Quick/Bulk Edit: Revert [48134] to address the bottom "Bulk actions" dropdown not functioning properly on Posts and Users list tables.
A better solution for the original issue will be explored in a future release.

Props audrasjb, garrett-eclipse, webzunft, Krstarica, chunkysteveo, SergeyBiryukov.
Merges [48866] to the 5.5 branch.
Fixes #50882, #50998. See #46872.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48867 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-26 14:19:01 +00:00
Sergey Biryukov
61f45b5db6 Editor: Remove some hardcoded text color values from patterns that have body text with no specific background color.
This ensures that the patterns respect the theme's default color for body text and avoids contrast issues, particularly in dark themes.

Props nrqsnchz, mapk, fullofcaffeine.
Merges [48864] to the 5.5 branch.
Fixes #50892.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48865 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-26 13:34:32 +00:00
Sergey Biryukov
09cf17d0b7 Administration: Remove non-color related styling from Modern color scheme.
Color schemes should only affect colors, to avoid diverging from a consistent and predictable layout, especially if core CSS rules subsequently change.

Follow-up to [48277], [48286], [48345].

Props Joen, johnbillion, afercia, johnjamesjacoby.
Merges [48862] to the 5.5 branch.
Fixes #51127. See #50504.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48863 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-26 13:19:09 +00:00
Sergey Biryukov
6f51272e51 Editor: Make some hardcoded strings in block patterns translatable.
Follow-up to [48726].

Props justinahinon, audrasjb, nabilmoqbel, tobifjellner, yoavf, ramiy.
Merges [48859] to the 5.5 branch.
Fixes #50845.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48860 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-25 12:40:21 +00:00
Sergey Biryukov
0dd560ac3f Bootstrap/Load: Add local environment type to wp_get_environment_type().
This gives developers a better control over their existing development workflow and ensures that `local` is not the exact same as `development` if it does not need to be.

Props claytoncollie, johnbillion, jeremyfelt, kreppar, dushakov, TimothyBlynJacobs, Ipstenu, khag7, knutsp, Clorith, markjaquith, joostdevalk, SergeyBiryukov.
Merges [48856] to the 5.5 branch.
Fixes #51064.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48857 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-24 22:32:20 +00:00
Sergey Biryukov
ae49fc0a3b Docs: Add documentation and a @since note about the loading attribute added to wp_get_attachment_image().
Follow-up to [48272].

Props audrasjb.
Merges [48852] and [48853] to the 5.5 branch.
Fixes #51122.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48854 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-24 22:12:06 +00:00
Sergey Biryukov
e393d41e3c Administration: Don't print the .php-error class in the admin header for PHP notices in wp-config.php.
Any notices in that file happen before `WP_DEBUG` takes effect, and should not be displayed with the `error_reporting` level previously set in `wp-load.php`.

Adding the class when there is no notice displayed results in extra padding under the admin bar, which should be avoided.

Follow-up to [20102], [21025], [26620], [47745].

Props akissz, tw2113, laxman-prajapati, sabernhardt, johnbillion, SergeyBiryukov.
Merges [48850] to the 5.5 branch.
Fixes #51073.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48851 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-24 10:48:24 +00:00
Sergey Biryukov
4ad67eb3c2 REST API: In WP_REST_Block_Directory_Controller::get_items(), make sure the blocks data for a plugin is not empty before proceeding.
This avoids a PHP notice if the API returns a plugin with empty data for `blocks` key.

Props khag7, TwentyZeroTwo, justinahinon, TimothyBlynJacobs, dd32, SergeyBiryukov.
Merges [48842] to the 5.5 branch.
Fixes #51018.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48849 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-24 10:33:09 +00:00
Sergey Biryukov
4e7ac9bb9f Docs: Update documentation for get_custom_logo() and the_custom_logo() to mention the unlink-homepage-logo theme feature.
Follow-up to [48039], [48283], [48749], [48757], [48758].

Props sabernhardt.
Merges [48832] to the 5.5 branch.
Fixes #51075.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48833 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-20 10:40:40 +00:00
Sergey Biryukov
acc404eaf8 Docs: Add a @since note to register_rest_route() about the _doing_it_wrong() notice when the required permission_callback argument is not set.
Follow-up to [48526].

Props psykro.
Merges [48827] to the 5.5 branch.
Fixes #51060.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48828 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-19 12:31:23 +00:00
Sergey Biryukov
5b338a892f Plugins: Avoid a PHP notice if the update-supported key in plugin data is not set.
Props sanzeeb3.
Merges [48820] to the 5.5 branch.
Fixes #51052.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48821 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-18 20:38:21 +00:00
Sergey Biryukov
ba58ceefa4 Formatting: Make the check for empty text in wp_trim_excerpt() more resilient.
This addresses a regression in [47808], which caused excerpts to be generated from post content if an empty string is passed, but not for other values considered empty, e.g. `null` or `false`.

Props riaanlom, laxman-prajapati, SergeyBiryukov.
Merges [48817] to the 5.5 branch.
Fixes #51042.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48819 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-18 19:35:30 +00:00
Sergey Biryukov
a8f733a239 Docs: Add a @since note to get_the_archive_title() about the title part being wrapped in a <span> element.
Follow-up to [48294].

Props justinahinon, audrasjb.
Merges [48814] to the 5.5 branch.
Fixes #51050.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48815 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-18 12:05:13 +00:00
Sergey Biryukov
e35a4f0170 Help/About: Revert [48811] from the 5.5 branch for now, to avoid displaying untranslated strings on the About page.
This should be merged back when 5.5.1 is about to be released.

See #51028.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48813 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-18 03:00:58 +00:00
Sergey Biryukov
1006cd9c2c Help/About: Fix typo and remove trailing spaces from some strings.
Props mukesh27, casiepa, davidbaumwald.
Merges [48809] to the 5.5 branch.
Fixes #51028.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48811 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-17 10:57:37 +00:00
Sergey Biryukov
fe47413a65 Site Health: Ensure that the tests returned by WP_Site_Health::get_tests() always have the required array keys: direct and async.
This avoids PHP notices if these keys were accidentally removed using the `site_status_tests` filter.

Props khag7, Ov3rfly, desrosj, Clorith.
Merges [48808] to the 5.5 branch.
Fixes #50858.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48810 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-17 02:21:17 +00:00
Sergey Biryukov
3212a7dffb REST API: Add uniqueItems as a permitted endpoint argument JSON Schema keyword.
Support for the `uniqueItems` keyword was added in [48357], but wasn't included in the list of permitted keywords for `WP_REST_Controller::get_endpoint_args_for_item_schema()`. This prevented the keyword from being automatically supported if specified in a controller's item schema.

Props TimothyBlynJacobs.
Merges [48796] to the 5.5 branch.
Fixes #51021.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48807 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-17 01:40:59 +00:00
Sergey Biryukov
267960fc5d Site Health: Only display the warning about the post_max_size PHP value when it's lower than upload_max_filesize.
Previously, the warning was displayed even if the value was higher than `upload_max_filesize`, which made the report inaccurate, as these values don't necessarily have to match.

Props oakesjosh, jeroenrotty, desrosj, Clorith.
Merges [48800] and [48801] to the 5.5 branch.
Fixes #50945.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48806 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-17 01:27:29 +00:00
Sergey Biryukov
6ee7a4f5c8 Site Health: Add site environment type to the debug information.
Follow-up to [47919], [48188], [48372].

Props joostdevalk, Clorith.
Merges [48802] to the 5.5 branch.
Fixes #50887.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48805 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-17 01:23:58 +00:00
Sergey Biryukov
9e0800ebe9 Site Health: Recognize define( 'WP_AUTO_UPDATE_CORE', 'minor' ) as an acceptable value.
Previously, it was only incidentally recognized as valid due to a loose comparison with `true`.

With the strict comparison added to `WP_Site_Health_Auto_Updates::test_constants()`, this was no longer the case.

Follow-up to [47841].

Props sterndata, mukesh27, avixansa, desrosj, SergeyBiryukov.
Merges [48792] to the 5.5 branch.
Fixes #50912.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48804 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-17 01:02:38 +00:00
Sergey Biryukov
6b6be351ef Filesystem API: Use correct variable when closing the file handle in WP_Filesystem_FTPext::get_contents().
Props gothick@gothick.org.uk.
Merges [48797] to the 5.5 branch.
Fixes #51029.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48803 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-17 00:55:28 +00:00
Sergey Biryukov
aabef3109e Post WordPress 5.5 version bump.
git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48787 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-11 19:33:39 +00:00
Jake Spurlock
70fcbf67df WordPress 5.5
git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48785 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-11 18:12:27 +00:00
Jonathan Desrosiers
b591209e14 Help/About: Final adjustments to the 5.5 About page.
- Final CDN asset URLs.
- Some minor color adjustments.

Props ryelle, marybaum, davidbaumwald, audrasjb, estelaris, afercia, cbringmann, andreamiddleton, desrosj, SergeyBiryukov, ocean90, nrqsnchz, spacedmonkey, whyisjake, man4toman.
Merges [48783] to the 5.5 branch.
Fixes #50416.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48784 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-11 16:55:20 +00:00
Jake Spurlock
32016c9a91 Post WordPress 5.5 RC 3 version bump.
git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48781 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-10 16:53:55 +00:00
Jake Spurlock
002569e0c7 WordPress 5.5 RC 3.
git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48780 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-10 16:31:54 +00:00
Sergey Biryukov
dd5e7eecdf Options, Meta APIs: Update the docs around default metadata values.
Add a missing @since value for 5.5 and potential default filter names.

Props johnbillion.
Reviewed by whyisjake, SergeyBiryukov.
Merges [48777] and [48778] to the 5.5 branch.
Fixes #50891.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48779 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-10 15:52:01 +00:00
Jonathan Desrosiers
8f90e1214a Bundled Themes: Bump theme versions ahead of WordPress 5.5.
The following theme versions will be released in coordination with WordPress 5.5:
- Twenty Ten: 3.1
- Twenty Eleven: 3.5
- Twenty Twelve: 3.2
- Twenty Thirteen: 3.1
- Twenty Fourteen: 2.9
- Twenty Fifteen: 2.7
- Twenty Sixteen: 2.2
- Twenty Seventeen: 2.4
- Twenty Nineteen: 1.7
- Twenty Twenty: 1.5

Props whyisjake, desrosj.
Reviewed by whyisjake, SergeyBiryukov, desrosj.
Merges [48775] to the 5.5 branch.
Fixes #50889.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48776 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-10 15:35:03 +00:00
Sergey Biryukov
b54b69fcfb Editor: update packages.
Props ellatrix.
Reviewed by whyisjake, SergeyBiryukov.
Merges [48772] to the 5.5 branch.
Fixes #50888.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48773 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-10 14:20:54 +00:00
Sergey Biryukov
612dba0c7e I18N: Fix typo in a screen reader text string on the About page.
Follow-up to [48729].

Props pedromendonca.
Reviewed by desrosj, SergeyBiryukov.
Merges [48770] to the 5.5 branch.
Fixes #50884.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48771 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-10 13:23:42 +00:00
Sergey Biryukov
dcfb85f81b I18N: Fix typo in a string in rest_validate_value_from_schema().
Props pedromendonca.
Reviewed by TimothyBlynJacobs, SergeyBiryukov.
Merges [48767] to the 5.5 branch.
Fixes #50879.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48768 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-09 02:01:01 +00:00
Sergey Biryukov
ec8435cf47 Help/About: Update videos and their descriptions on the About page.
Follow-up to [48675], [48686], [48721], [48729], [48730], [48736].

Props ryelle, marybaum, estelaris, desrosj, joen, afercia.
Reviewed by jorbin, SergeyBiryukov.
Merges [48761] to the 5.5 branch.
See #50416.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48763 602fd350-edb4-49c9-b593-d223f7449a82
2020-08-08 21:00:09 +00:00