diff --git a/wp-admin/term.php b/wp-admin/term.php index 5e621d77df..dc3f1d5fef 100644 --- a/wp-admin/term.php +++ b/wp-admin/term.php @@ -20,7 +20,7 @@ if ( empty( $_REQUEST['tag_ID'] ) ) { } $tag_ID = absint( $_REQUEST['tag_ID'] ); -$tag = get_term( $tag_ID, '', OBJECT, 'edit' ); +$tag = get_term( $tag_ID, $taxnow, OBJECT, 'edit' ); if ( ! $tag instanceof WP_Term ) { wp_die( __( 'You attempted to edit an item that doesn’t exist. Perhaps it was deleted?' ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 0a04b36b19..4e0eac728f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-beta3-38068'; +$wp_version = '4.6-beta3-38069'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.