﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
13044,is_taxonomy should return true on taxonomy pages,thomask,filosofo,"contrary is_category() and other conditional functions, the is_taxonomy function must have argument $taxonomy, so cannot be used to check if i am on the taxonomy page.

wp-includes/taxnomoy.php should have something like

{{{
function is_taxonomy( $taxonomy= NULL ) {
        global $wp_query;
        if (NULL == $taxonomy) return isset($wp_query->is_tax);
	global $wp_taxonomies;
	return isset($wp_taxonomies[$taxonomy]);
}
}}}
",defect (bug),closed,normal,,Taxonomy,3.0,normal,invalid,reporter-feedback,
