iandunn
4de6175227
Multisite: Cache absolute dirsize
paths to avoid PHP 8 fatal.
...
r49212 greatly improved the performance of `get_dirsize()`, but also changed the structure of the data stored in the `dirsize_cache` transient. It stored relative paths instead of absolute ones, and also removed the unnecessary `size` array.
That difference in data structures led to a fatal error in the following environment:
* PHP 8
* Multisite
* A custom `WP_CONTENT_DIR` which is not a child of WP's `ABSPATH` folder (e.g., [https://roots.io/bedrock/ Bedrock])
* The `upload_space_check_disabled` option set to `0`
After upgrading to WP 5.6, the `dirsize_cache` transient still had data in the old format. When `wp-admin.php/index.php` was visited, `get_space_used()` received an `array` instead of an `int`, and tried to divide it by another `int`. PHP 7 would silently cast the arguments to match data types, but [https://wiki.php.net/rfc/arithmetic_operator_type_checks PHP 8 throws a fatal error]:
`Uncaught TypeError: Unsupported operand types: array / int`
`recurse_dirsize()` was using `ABSPATH` to convert the absolute paths to relative ones, but some upload locations are not located under `ABSPATH`. In those cases, `$directory` and `$cache_path` were identical, and that triggered the early return of the old `array`, instead of the expected `int`.
In order to avoid that, this commit restores the absolute paths, but without the `size` array. It also adds a type check when returning cached values. Using absolute paths without `size` has the result of overwriting the old data, so that it matches the new format. The type check and upgrade routine are additional safety measures.
Props peterwilsoncc, janthiel, helen, hellofromtonya, francina, pbiron.
Fixes #51913 . See #19879 .
Built from https://develop.svn.wordpress.org/trunk@49744
git-svn-id: http://core.svn.wordpress.org/trunk@49467 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-12-03 20:39:02 +00:00
Sergey Biryukov
203b48f281
Upgrade/Install: Update sodium_compat to v1.14.0.
...
This includes improved PHP 8 support and more inclusive language.
A full list of changes in this update can be found on GitHub:
https://github.com/paragonie/sodium_compat/compare/v1.13.0...v1.14.0
Follow-up to [48121], [49056], [49057].
Props jrf.
Fixes #51925 .
Built from https://develop.svn.wordpress.org/trunk@49741
git-svn-id: http://core.svn.wordpress.org/trunk@49464 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-12-03 17:41:07 +00:00
TimothyBlynJacobs
4dd08e20b8
App Passwords: Return true when rate limiting a password's last used time.
...
Previously we returned a `WP_Error` instance saying that the password was not found which is inaccurate.
Props dlh.
Fixes #51922 .
Built from https://develop.svn.wordpress.org/trunk@49739
git-svn-id: http://core.svn.wordpress.org/trunk@49462 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-12-03 16:30:06 +00:00
Sergey Biryukov
fc3a155f6a
Editor: Update components package for WordPress 5.6 RC3.
...
@wordpress/components: 11.1.2 -> 11.1.3
This fixes an accessibility regression with VoiceOver not announcing the input label or an existing selection in the parent page dropdown under "Page Attributes" in the sidebar.
See https://github.com/WordPress/gutenberg/pull/27431 for more details.
Props isabel_brison, sarahricker, alexstine, kevin940726, talldanwp.
Fixes #51923 .
Built from https://develop.svn.wordpress.org/trunk@49737
git-svn-id: http://core.svn.wordpress.org/trunk@49460 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-12-03 14:43:31 +00:00
Sergey Biryukov
be2891ef1a
Upgrade/Install: Check $wp_version
global for displaying "You are using a development version" message in the admin footer.
...
This brings some consistency with the same check in `core_upgrade_preamble()` and avoids a PHP warning if `$cur->version` is not set.
Additionally, remove the check for `$cur->url` property, unused since [8595].
Follow-up to [49708], [49709].
Props pbiron, afragen, audrasjb.
Fixes #51892 .
Built from https://develop.svn.wordpress.org/trunk@49736
git-svn-id: http://core.svn.wordpress.org/trunk@49459 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-12-03 14:06:04 +00:00
Sergey Biryukov
0a20850f57
Docs: Clarify the $format
parameter description in comment_time()
.
...
See #51800 .
Built from https://develop.svn.wordpress.org/trunk@49735
git-svn-id: http://core.svn.wordpress.org/trunk@49458 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-12-02 16:55:06 +00:00
John Blackbourn
00680f2e89
REST API: Pass the previous state of the post as a parameter to the wp_after_insert_post
hook.
...
This enables, for example, the previous post status to be used by this hook without the need to first capture it on an earlier hook.
This also fixes the value of the `$fire_after_hooks` parameter in `get_default_post_to_edit()` so the `wp_after_insert_post` action correctly fires just once on the new post screen.
Props Collizo4sky, peterwilsoncc, hellofromTonya, TimothyBlynJacobs, SergeyBiryukov
Fixes #45114
Built from https://develop.svn.wordpress.org/trunk@49731
git-svn-id: http://core.svn.wordpress.org/trunk@49454 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-12-01 20:47:06 +00:00
desrosj
5bd111eb76
Twenty Twenty-One: Sync the latest changes for 5.6 RC2.
...
This will be the final sync from GitHub before placing that repository into read-only mode. All further changes should now flow entirely through Trac.
For a full list of changes since [49633], see 1d5a895...53acd9b
.
Props poena, luminuu, kjellr, ryelle, allancole, melchoyce, felipeelia, aljullu, kebbet, chaton666, Clorith, mkaz, ingereck, paaljoachim.
See #51526 .
Built from https://develop.svn.wordpress.org/trunk@49726
git-svn-id: http://core.svn.wordpress.org/trunk@49449 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-12-01 19:09:05 +00:00
Sergey Biryukov
2c1bfb5baf
Administration: Make sure row actions for recent comments in Activity dashboard widget stay visible when a single row gets focus.
...
Follow-up to [49142].
Props sabernhardt, kebbet, hareesh-pillai, pbiron.
Fixes #51886 . See #51516 , #49715 .
Built from https://develop.svn.wordpress.org/trunk@49725
git-svn-id: http://core.svn.wordpress.org/trunk@49448 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-12-01 18:16:07 +00:00
Sergey Biryukov
8e70bc7720
Editor: Don't unnecessarily split a translatable string in block templates.
...
As a best practice, strings available for translation should contain entire sentences whenever possible.
Splitting a sentence in two parts and putting them back together after translation should be avoided, as the word order in other languages can be different from English.
Props tobifjellner, kebbet, audrasjb, mukesh27, hellofromTonya, azaozz, SergeyBiryukov.
Fixes #51893 .
Built from https://develop.svn.wordpress.org/trunk@49722
git-svn-id: http://core.svn.wordpress.org/trunk@49445 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-12-01 17:03:04 +00:00
Sergey Biryukov
785cb6cc7d
Media: Revert [49567].
...
This addresses a regression with the pagination section in Media Library no longer taking additional query filtering into account.
Props iCaleb, trepmal, peterwilsoncc.
See #39968 .
Built from https://develop.svn.wordpress.org/trunk@49720
git-svn-id: http://core.svn.wordpress.org/trunk@49443 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-12-01 16:33:05 +00:00
Sergey Biryukov
a9490c4639
Editor: Update packages for WordPress 5.6 RC2.
...
The following package versions were changed:
@wordpress/block-directory: 1.17.4 -> 1.17.5
@wordpress/block-editor: 5.1.3 -> 5.1.4
@wordpress/block-library: 2.26.4 -> 2.26.5
@wordpress/blocks: 6.24.1 -> 6.24.2
@wordpress/components: 11.1.1 -> 11.1.2
@wordpress/core-data: 2.24.1 -> 2.24.2
@wordpress/edit-post: 3.25.4 -> 3.25.5
@wordpress/editor: 9.24.3 -> 9.24.4
@wordpress/format-library: 1.25.3 -> 1.25.4
@wordpress/list-reusable-blocks: 1.24.1 -> 1.24.2
@wordpress/nux: 3.23.1 -> 3.23.2
@wordpress/reusable-blocks: 1.0.3 -> 1.0.4
@wordpress/server-side-render: 1.19.1 -> 1.19.2
See https://github.com/WordPress/gutenberg/pull/27366 for the list of fixed bugs.
Props isabel_brison.
Fixes #51902 .
Built from https://develop.svn.wordpress.org/trunk@49718
git-svn-id: http://core.svn.wordpress.org/trunk@49441 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-12-01 12:19:43 +00:00
TimothyBlynJacobs
c3b40f7f80
Site Health, App Passwords: Ensure REST API responses are properly translated.
...
The REST API requests in Site Health and App Passwords now include `_locale=user` in the request URL to ensure the user's locale is used instead of the site locale. Additionally, the `apiRequest` library now sends a JSON `Accept` header which is required by `determine_locale()` to respect the `_locale` query parameter.
The Site Health REST API controllers now manually load the default admin textdomain if not `is_admin()`. This allows for the Site Health tests to be translated even though the translations are part of the administration project and the REST API is not.
Props oglekler, kebbet, Clorith, TimothyBlynJacobs, ocean90, SergeyBiryukov, adamsilverstein.
Fixes #51871 .
Built from https://develop.svn.wordpress.org/trunk@49716
git-svn-id: http://core.svn.wordpress.org/trunk@49439 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-12-01 03:44:05 +00:00
Sergey Biryukov
b3a952972e
External Libraries: Upgrade PHPMailer to version 6.2.0.
...
For a full list of changes in this update, see the PHPMailer GitHub:
https://github.com/PHPMailer/PHPMailer/compare/v6.1.8...v6.2.0
Props ayeshrajans, jrf.
Fixes #51874 .
Built from https://develop.svn.wordpress.org/trunk@49713
git-svn-id: http://core.svn.wordpress.org/trunk@49436 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-30 17:10:05 +00:00
Andrew Ozz
190b9a0b32
Quick/Bulk Edit: Follow up to [49703]. Improve the logic a bit and always return this
(the jQuery object) in wpTagsSuggest
.
...
Fixes #51872 .
Built from https://develop.svn.wordpress.org/trunk@49710
git-svn-id: http://core.svn.wordpress.org/trunk@49433 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-30 14:31:04 +00:00
Sergey Biryukov
ce3334571d
Upgrade/Install: Display "You are using a development version" message on WordPress Updates screen for Beta or RC versions.
...
This ensures that the message is displayed when the `WP_AUTO_UPDATE_CORE` constant is set to `beta` or `rc` and the user is on a development version.
Follow-up to [49245], [49254], [49292], [49638], [49708].
Props afragen, audrasjb, azaozz, SergeyBiryukov.
Fixes #51822 .
Built from https://develop.svn.wordpress.org/trunk@49709
git-svn-id: http://core.svn.wordpress.org/trunk@49432 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-30 13:42:07 +00:00
Sergey Biryukov
95f28a3fd2
Upgrade/Install: Display "You are using a development version" message in the admin footer for Beta or RC versions.
...
This ensures that the message is displayed when the `WP_AUTO_UPDATE_CORE` constant is set to `beta` or `rc` and the user is on a development version.
Props afragen.
Fixes #51892 .
Built from https://develop.svn.wordpress.org/trunk@49708
git-svn-id: http://core.svn.wordpress.org/trunk@49431 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-29 16:13:06 +00:00
Sergey Biryukov
2797594835
Comments: Correct ending tag placement in the "Search results for: ..." subtitle.
...
Follow-up to [49284], [49286].
Props Clorith, kebbet, johnbillion, audrasjb, azaozz.
Fixes #51889 . See #37353 .
Built from https://develop.svn.wordpress.org/trunk@49705
git-svn-id: http://core.svn.wordpress.org/trunk@49428 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-28 17:28:05 +00:00
Andrew Ozz
94e8230864
External Libraries: Fix hiding of the text in the jQuery UI dialog close button.
...
Props marijnkoopman, SergeyBiryukov, Clorith, azaozz.
Fixes #51863 .
Built from https://develop.svn.wordpress.org/trunk@49704
git-svn-id: http://core.svn.wordpress.org/trunk@49427 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-28 13:50:03 +00:00
Andrew Ozz
bac1ada04d
Quick/Bulk Edit: Fix undefined
error when initializing UI Autocomplete 1.12.1 on non-existing element and then attempting to use the autocomplete instance.
...
Example: `jQuery( '#nonexisting' ).autocomplete().autocomplete( 'instance' ).something`.
Props _luigi, sabernhardt, donmhico, azaozz.
Fixes #51872 .
Built from https://develop.svn.wordpress.org/trunk@49703
git-svn-id: http://core.svn.wordpress.org/trunk@49426 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-28 12:46:05 +00:00
ryelle
33749fcc74
Help/About: Update URLs in About page
...
Replace the placeholder links now that the posts have been published. This also updates the jQuery plugin links to to local-site links, if the user can install plugins.
Follow-up to [49640].
Props mukesh27, ocean90.
See #51415 .
Built from https://develop.svn.wordpress.org/trunk@49702
git-svn-id: http://core.svn.wordpress.org/trunk@49425 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-27 17:10:07 +00:00
Sergey Biryukov
25d67c30b0
Tests: Test that sanitize_title_with_dashes()
strips HTML tags.
...
`sanitize_title()` already has the same test in its own file.
Props pbearne.
Fixes #51881 .
Built from https://develop.svn.wordpress.org/trunk@49701
git-svn-id: http://core.svn.wordpress.org/trunk@49424 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-27 12:52:06 +00:00
John Blackbourn
40b738335b
Docs: Corrections and improvements to docs for properties of the WP_Query
class.
...
This also adds additional type hinting inside some methods to help IDEs.
See #51800
Built from https://develop.svn.wordpress.org/trunk@49700
git-svn-id: http://core.svn.wordpress.org/trunk@49423 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-26 17:04:06 +00:00
Sergey Biryukov
f0b5757e35
Options, Meta APIs: Pass $meta_type
to the get_{$meta_type}_metadata
filter in metadata_exists()
.
...
This matches the main instance of the filter in `get_metadata_raw()`.
Follow-up to [48505].
Props pbiron, jsmoriss, TimothyBlynJacobs.
Fixes #51866 .
Built from https://develop.svn.wordpress.org/trunk@49699
git-svn-id: http://core.svn.wordpress.org/trunk@49422 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-26 12:34:06 +00:00
Sergey Biryukov
82d074fb0a
Docs: Use typed array notation for the $size
parameter of embed_defaults
filter.
...
Previously committed in [42876], accidentally reverted in [44154].
See #51800 .
Built from https://develop.svn.wordpress.org/trunk@49698
git-svn-id: http://core.svn.wordpress.org/trunk@49421 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-25 12:14:05 +00:00
Peter Wilson
e89f669274
Build/Test Tools: Use dataProviders for some kses tests.
...
Refactor several kses tests to use dataProviers rather than looping through assertions.
See #51802 .
Built from https://develop.svn.wordpress.org/trunk@49697
git-svn-id: http://core.svn.wordpress.org/trunk@49420 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-25 04:51:03 +00:00
Peter Wilson
5a9a4865ad
Build/Test Tools: Remove unused posts from AJAX test setUp()
.
...
Removes the creation of five posts from the AJAX test suite `setUp()` function, replacing it with a shared fixture only where required.
See #51802 .
Built from https://develop.svn.wordpress.org/trunk@49696
git-svn-id: http://core.svn.wordpress.org/trunk@49419 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-25 04:11:05 +00:00
noisysocks
7aa60ecce9
Editor: Remove render_block hooks from WP_Block
...
Reverts the move of pre_render_block, render_block_data, and
render_block_context to WP_Block.
This change has more implications than first thought so will be revisted later
in 5.7.
Reverts [49609,49608].
See #51612 .
Built from https://develop.svn.wordpress.org/trunk@49695
git-svn-id: http://core.svn.wordpress.org/trunk@49418 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-25 01:20:09 +00:00
John Blackbourn
f4cda1b62f
Docs: Upgrade more parameters in docblocks to used typed array notation.
...
See #51800 , #41756
Built from https://develop.svn.wordpress.org/trunk@49693
git-svn-id: http://core.svn.wordpress.org/trunk@49416 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-24 21:27:05 +00:00
John Blackbourn
780cdb5eb5
Docs: Various docblock corrections relating to parameter types.
...
See #51800
Built from https://develop.svn.wordpress.org/trunk@49692
git-svn-id: http://core.svn.wordpress.org/trunk@49415 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-24 21:22:04 +00:00
Sergey Biryukov
d26f6daa23
Tests: Ignore EOL differences in WP_List_Table::get_bulk_items()
test for optgroups.
...
This avoids a misleading failure due to Unix vs. Windows EOL style mismatches and allows the test to pass on Windows.
Follow-up to [46612], [49190].
See #19278 .
Built from https://develop.svn.wordpress.org/trunk@49691
git-svn-id: http://core.svn.wordpress.org/trunk@49414 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-24 20:43:08 +00:00
Sergey Biryukov
0f9170b82d
Docs: Clarify that the $class
argument of wp_list_bookmarks()
can accept an array.
...
Follow-up to [32906].
See #51855 , #51800 .
Built from https://develop.svn.wordpress.org/trunk@49688
git-svn-id: http://core.svn.wordpress.org/trunk@49411 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-24 12:29:07 +00:00
Sergey Biryukov
771b1048be
Help/About: Move trailing punctuation in the jQuery Migrate Helper plugin link outside of the HTML tag.
...
Props psmits1567, audrasjb, tobifjellner, fierevere, markscottrobson.
Fixes #51813 .
Built from https://develop.svn.wordpress.org/trunk@49685
git-svn-id: http://core.svn.wordpress.org/trunk@49408 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-23 19:35:03 +00:00
Sergey Biryukov
5f9cf0141e
Plugins: Check if _error_nonce
is set before attempting to verify it.
...
This avoids a PHP notice on the Plugins screen when `error` query string is added to the URL.
Props wponlinesupport.
Fixes #43876 .
Built from https://develop.svn.wordpress.org/trunk@49683
git-svn-id: http://core.svn.wordpress.org/trunk@49406 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-23 13:36:07 +00:00
Sergey Biryukov
8312762816
Docs: Update syntax for multi-line comment in core_auto_updates_settings()
per the documentation standards.
...
Follow-up to [49677].
See #51827 .
Built from https://develop.svn.wordpress.org/trunk@49681
git-svn-id: http://core.svn.wordpress.org/trunk@49404 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-22 15:59:05 +00:00
Sergey Biryukov
3af1bfdbfa
Docs: Add documentation for the $type
and $mime_type
properties in WP_Customize_Image_Control
.
...
Follow-up to [20319], [30309], [31698], [32023], [49679].
Props subrataemfluence.
Fixes #44411 .
Built from https://develop.svn.wordpress.org/trunk@49680
git-svn-id: http://core.svn.wordpress.org/trunk@49403 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-22 15:53:03 +00:00
Sergey Biryukov
f31f929a5b
Docs: Add documentation for the $type
, $mime_type
, and $button_labels
properties in WP_Customize_Upload_Control
.
...
Follow-up to [20319], [30309], [31698], [32023].
Props subrataemfluence.
See #44411 .
Built from https://develop.svn.wordpress.org/trunk@49679
git-svn-id: http://core.svn.wordpress.org/trunk@49402 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-22 15:51:03 +00:00
Sergey Biryukov
dda5dcd028
Docs: Correct @since
tag for the class-wp-widget-area-customize-control.php
file.
...
Per the documentation standards, the file header `@since` tag is supposed to specify when the file was introduced.
Follow-up to [35389].
See #51800 .
Built from https://develop.svn.wordpress.org/trunk@49678
git-svn-id: http://core.svn.wordpress.org/trunk@49401 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-22 15:12:03 +00:00
Andrew Ozz
991114fb57
Upgrade/Install: Replace the conditionals that check the AUTOMATIC_UPDATER_DISABLED
constant and the automatic_updater_disabled
filter in update-core.php with a call to WP_Automatic_Updater::is_disabled()
. This prevents a PHP warning, fixes the logic, and considers wp_is_file_mod_allowed( 'automatic_updater' )
when determining the UI state.
...
Props jamesros161, pbiron, audrasjb, azaozz.
Fixes #51827 .
Built from https://develop.svn.wordpress.org/trunk@49677
git-svn-id: http://core.svn.wordpress.org/trunk@49400 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-22 13:03:06 +00:00
Sergey Biryukov
9150652fed
Site Health: Check if $core_updates
is an array before iterating on it.
...
This avoids a PHP warning if `get_core_updates()` returns `false`.
Props paulschreiber.
Fixes #51818 .
Built from https://develop.svn.wordpress.org/trunk@49676
git-svn-id: http://core.svn.wordpress.org/trunk@49399 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-21 14:39:03 +00:00
Sergey Biryukov
5ab5b3e73b
Docs: Add missing @since
tags for WP_Upgrader_Skin
methods.
...
See #51800 .
Built from https://develop.svn.wordpress.org/trunk@49675
git-svn-id: http://core.svn.wordpress.org/trunk@49398 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-21 12:08:05 +00:00
ryelle
7ded4af960
Help/About: Clarify accessibility features.
...
* Captions are uploaded in the block editor, and not created in the editor.
* Avoid making an invalid claim of WCAG 2.1 conformance or trivialize the efforts still required to build an accessible and compliant site.
Follow-up to [49640].
Props joedolson.
See #51415 .
Built from https://develop.svn.wordpress.org/trunk@49674
git-svn-id: http://core.svn.wordpress.org/trunk@49397 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-21 00:13:07 +00:00
Sergey Biryukov
d86f6bde55
Docs: Correct $fire_after_hooks
parameter name in @since
tags.
...
Follow-up to [49172], [49173].
See #45114 .
Built from https://develop.svn.wordpress.org/trunk@49673
git-svn-id: http://core.svn.wordpress.org/trunk@49396 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-20 11:58:06 +00:00
John Blackbourn
35f6c356c1
Docs: Document parameters that accept an array of integers using typed array notation.
...
While many of these parameters also technically accept an array of numerical strings, they are all ultimately cast to an array of integers. Documenting them as such assists developers in understanding the expected types.
See #51800 , #41756
Built from https://develop.svn.wordpress.org/trunk@49672
git-svn-id: http://core.svn.wordpress.org/trunk@49395 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-19 18:24:09 +00:00
John Blackbourn
6e472178d1
Docs: Add missing @since
tags.
...
See #51800
Built from https://develop.svn.wordpress.org/trunk@49671
git-svn-id: http://core.svn.wordpress.org/trunk@49394 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-19 17:54:05 +00:00
John Blackbourn
792c53ac8c
Docs: Clarify and standardise on terminology used for rewrite rule endpoint masks.
...
See #51800
Built from https://develop.svn.wordpress.org/trunk@49670
git-svn-id: http://core.svn.wordpress.org/trunk@49393 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-19 16:15:08 +00:00
Sergey Biryukov
aab7112b09
Docs: Use more specific type in parameter descriptions for in_category()
and is_object_in_term()
.
...
This better aligns with `is_category()` and other conditional tags and their `WP_Query` counterpart methods.
Follow-up to [47402].
Props princeahmed.
Fixes #51825 .
Built from https://develop.svn.wordpress.org/trunk@49669
git-svn-id: http://core.svn.wordpress.org/trunk@49392 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-19 15:20:05 +00:00
Sergey Biryukov
da6ab833d5
Coding Standards: Remove redundant isset()
check in core_upgrade_preamble()
.
...
`isset()` can be safely used to check properties and subproperties of objects directly.
Follow-up to [49638].
See #51799 .
Built from https://develop.svn.wordpress.org/trunk@49668
git-svn-id: http://core.svn.wordpress.org/trunk@49391 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-19 12:05:06 +00:00
Sergey Biryukov
6cde96263b
Help/About: Correct placeholder for the accessibility statement feature plugin link.
...
Add missing translator comment.
Props audrasjb.
See #51415 .
Built from https://develop.svn.wordpress.org/trunk@49651
git-svn-id: http://core.svn.wordpress.org/trunk@49388 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-18 15:51:04 +00:00
Sergey Biryukov
05125ed8bf
Site Health: Add missing i18n for the App Passwords documentation link.
...
Follow-up to [49334].
Props tai.
Fixes #51815 .
Built from https://develop.svn.wordpress.org/trunk@49650
git-svn-id: http://core.svn.wordpress.org/trunk@49387 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-11-18 15:04:05 +00:00