mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-09 09:57:38 +01:00
Taxonomy: Fix typo in taxonomy_meta_box_sanitize_cb_checkboxes()
argument name.
Props itowhid06. Fixes #45756. Built from https://develop.svn.wordpress.org/trunk@44367 git-svn-id: http://core.svn.wordpress.org/trunk@44197 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
fcab8d02e0
commit
b7ddbe94e7
@ -1999,7 +1999,7 @@ function redirect_post( $post_id = '' ) {
|
|||||||
* @param mixed $terms Raw term data from the 'tax_input' field.
|
* @param mixed $terms Raw term data from the 'tax_input' field.
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
function taxonomy_meta_box_sanitize_cb_checkboxes( $taxonmy, $terms ) {
|
function taxonomy_meta_box_sanitize_cb_checkboxes( $taxonomy, $terms ) {
|
||||||
return array_map( 'intval', $terms );
|
return array_map( 'intval', $terms );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.1-alpha-44366';
|
$wp_version = '5.1-alpha-44367';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user