From 8a190638182264f025169812dab7c8fed001ce2e Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Fri, 30 Dec 2016 05:54:40 +0000 Subject: [PATCH] Taxonomy: Redirect to current taxonomy when adding a term without AJAX. Fixes a regression in which adding terms via a full page refresh, ie without AJAX, would always redirect to the tags taxonomy. Props szaqal21, peterwilsoncc. Merges [39649] to the 4.7 branch. Fixes #39328 for 4.7. git-svn-id: https://develop.svn.wordpress.org/branches/4.7@39652 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/edit-tags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/edit-tags.php b/src/wp-admin/edit-tags.php index e90a87f760..d8048f91d3 100644 --- a/src/wp-admin/edit-tags.php +++ b/src/wp-admin/edit-tags.php @@ -81,7 +81,7 @@ case 'add-tag': $ret = wp_insert_term( $_POST['tag-name'], $taxonomy, $_POST ); if ( $ret && !is_wp_error( $ret ) ) - $location = add_query_arg( 'message', 1, $location ); + $location = add_query_arg( 'message', 1, $referer ); else $location = add_query_arg( array( 'error' => true, 'message' => 4 ), $referer );