From c4d5a5e4a6a53964328533307a8856f334e96af8 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Thu, 21 Oct 2010 12:42:48 +0000 Subject: [PATCH] Encode the amp in the edit-tags menu link for pages. props blepoxp, see #14489 for trunk. git-svn-id: https://develop.svn.wordpress.org/trunk@15881 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/menu.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/menu.php b/wp-admin/menu.php index d7c77b618a..439cd90915 100644 --- a/wp-admin/menu.php +++ b/wp-admin/menu.php @@ -94,7 +94,7 @@ $menu[20] = array( __('Pages'), 'edit_pages', 'edit.php?post_type=page', '', 'me if ( ! $tax->show_ui || ! in_array('page', (array) $tax->object_type, true) ) continue; - $submenu['edit.php?post_type=page'][$i++] = array( esc_attr( $tax->labels->name ), $tax->cap->manage_terms, 'edit-tags.php?taxonomy=' . $tax->name . '&post_type=page' ); + $submenu['edit.php?post_type=page'][$i++] = array( esc_attr( $tax->labels->name ), $tax->cap->manage_terms, 'edit-tags.php?taxonomy=' . $tax->name . '&post_type=page' ); } unset($tax);