I'm having the same 'insert form' issue when trying to insert the shortcode. Here is the javascript error message.
------
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 1.1.4322; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET CLR 3.0.30729; .NET4.0C)
Timestamp: Sat, 30 Oct 2010 20:48:02 UTC
Message: Object doesn't support this property or method
Line: 914
Char: 17
Code: 0
URI: http://xxxx.xxxxx.com/wp-admin/post.php?post=1293&action=edit
------
Here's what the 'post.php. code looks like (line 914 in the error message is line 9 below)
function get_post_type_capabilities( $args ) {
$defaults = array(
'edit_post' => 'edit_' . $args->capability_type,
'edit_posts' => 'edit_' . $args->capability_type . 's',
'edit_others_posts' => 'edit_others_' . $args->capability_type . 's',
'publish_posts' => 'publish_' . $args->capability_type . 's',
'read_post' => 'read_' . $args->capability_type,
'read_private_posts' => 'read_private_' . $args->capability_type . 's',
'delete_post' => 'delete_' . $args->capability_type,
);
$labels = array_merge( $defaults, $args->capabilities );
return (object) $labels;
Any ideas?
Posted 14 years ago on Saturday October 30, 2010 |
Permalink