﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
21104	Taxonomies on attachments should not generate UI is show_ui is false	simonwheatley	markjaquith	"Currently if you register a taxonomy and associate it with attachments, the ```show_ui``` argument does not affect whether WordPress generates the UI for the taxonomy in the media item edit form. If ```show_ui``` is false, then no UI should be generated anywhere in any admin screen.

{{{
$args = array(
	'label'   => 'Test Taxonomy',
	'show_ui' => false,
	);
register_taxonomy( 'test', array( 'attachment' ), $args );
}}}"	defect (bug)	closed	normal	3.5	Media	3.4	normal	fixed	has-patch commit	ben@…
