From b204d3ead21ff694405f32b60154c0dafdd23075 Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Sun, 27 Mar 2016 15:16:29 +0000 Subject: [PATCH] Taxonomy: After [36874], run the correct `load-edit-tags.php` hook on the new term edit page. When not misspelled, this hook is useful (and needed) for backward compatibility. Unprops swissspidy. Fixes #34988. Built from https://develop.svn.wordpress.org/trunk@37084 git-svn-id: http://core.svn.wordpress.org/trunk@37051 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/admin.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/admin.php b/wp-admin/admin.php index 03426c18c2..a54ca21ba7 100644 --- a/wp-admin/admin.php +++ b/wp-admin/admin.php @@ -356,7 +356,7 @@ if ( isset($plugin_page) ) { elseif ( $taxnow == 'link_category' ) do_action( 'load-edit-link-categories.php' ); } elseif( 'term.php' === $pagenow ) { - do_action( 'edit-tags.php' ); + do_action( 'load-edit-tags.php' ); } } diff --git a/wp-includes/version.php b/wp-includes/version.php index fdc5d7fafe..455e67c2ec 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-RC1-37083'; +$wp_version = '4.5-RC1-37084'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.