﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
12867,"""Preview Changes"" does not work for custom content types",markjaquith,,"If you click ""Preview Changes"" for a custom post type item, you receive the message ""Are you sure you want to do this?""

Likely a nonce mismatch issue.  Here is the test code to add a custom post type:

{{{
                register_post_type(
                        'album', array(
                        'label' => __('Albums'),
                        'singular_label' => __('Album'),
                        'public' => true,
                        'show_ui' => true,
                        '_edit_link' => 'post.php?post=%d',
                        'capability_type' => 'page',
                        'hierarchical' => false,
                        'rewrite' => true,
                        'query_var' => 'album',
                        'supports' => array('title', 'thumbnail')
                ));
}}}
",defect (bug),closed,high,3.0,Post Types,3.0,major,fixed,has-patch needs-testing,
