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:
Sergey Biryukov 2018-12-28 18:04:50 +00:00
parent fcab8d02e0
commit b7ddbe94e7
2 changed files with 2 additions and 2 deletions

View File

@ -1999,7 +1999,7 @@ function redirect_post( $post_id = '' ) {
* @param mixed $terms Raw term data from the 'tax_input' field.
* @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 );
}

View File

@ -13,7 +13,7 @@
*
* @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.