From ea039810f6e6243b60ff6b77ae3910dbb23317c4 Mon Sep 17 00:00:00 2001 From: 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: http://svn.automattic.com/wordpress/trunk@15881 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 d7c77b618..439cd9091 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);