﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
13674,custom post type showing add new post instead of custom post type label,yalamber,,"[[Image(http://www.wpexpo.com/Custom_post_type.PNG)]]
I am using wordpress 3.0 and it's multi network system with custom post type setting. I have used following code in themes functions.php

{{{
function post_type_movies() {
	register_post_type('movies', array(
	 'label' => __('Movies'),
	 'public' => true,
	 'show_ui' => true,
	 'rewrite' => array(""slug"" => ""movie""),
	 'supports' => array('title', 'editor', 'custom-fields', 'author', 'thumbnail','comments')
	));
	register_taxonomy_for_object_type('post_tag', 'movies');
}
add_action('init', 'post_type_movies');
}}}

I get the custom post type block but when i add new post in custom post type I see it says Add new post instead of Add new movies.",defect (bug),closed,normal,,Post Types,3.0,normal,invalid,custom post types,
