Ticket #16714: add-new.diff
File add-new.diff, 3.3 KB (added by , 12 years ago) |
---|
-
wp-includes/post.php
1296 1296 'edit_others_posts' => 'edit_others_' . $plural_base, 1297 1297 'publish_posts' => 'publish_' . $plural_base, 1298 1298 'read_private_posts' => 'read_private_' . $plural_base, 1299 // Post creation capability simply maps to edit_posts by default:1300 'create_posts' => 'edit_' . $plural_base,1301 1299 ); 1302 1300 1301 // Post creation capability simply maps to edit_posts by default: 1302 if ( ! isset( $args->capabilities['create_posts'] ) ) 1303 $default_capabilities['create_posts'] = 'edit_' . $plural_base; 1304 1303 1305 // Primitive capabilities used within map_meta_cap(): 1304 1306 if ( $args->map_meta_cap ) { 1305 1307 $default_capabilities_for_mapping = array( -
wp-admin/post-new.php
36 36 37 37 $editing = true; 38 38 39 if ( ! current_user_can( $post_type_object->cap->edit_posts ) )39 if ( ! current_user_can( $post_type_object->cap->edit_posts ) || ! current_user_can( $post_type_object->cap->create_posts ) ) 40 40 wp_die( __( 'Cheatin’ uh?' ) ); 41 41 42 42 // Schedule auto-draft cleanup -
wp-admin/edit-form-advanced.php
274 274 275 275 <div class="wrap"> 276 276 <?php screen_icon(); ?> 277 <h2><?php echo esc_html( $title ); ?><?php if ( isset( $post_new_file ) ) : ?> <a href="<?php echo esc_url( $post_new_file ) ?>" class="add-new-h2"><?php echo esc_html($post_type_object->labels->add_new); ?></a><?php endif; ?></h2> 277 <h2><?php 278 echo esc_html( $title ); 279 if ( isset( $post_new_file ) && current_user_can( $post_type_object->cap->create_posts ) ) 280 echo ' <a href="' . esc_url( $post_new_file ) . '" class="add-new-h2">' . esc_html( $post_type_object->labels->add_new ) . '</a>'; 281 ?></h2> 278 282 <?php if ( $notice ) : ?> 279 283 <div id="notice" class="error"><p><?php echo $notice ?></p></div> 280 284 <?php endif; ?> -
wp-admin/edit.php
221 221 ?> 222 222 <div class="wrap"> 223 223 <?php screen_icon(); ?> 224 <h2><?php echo esc_html( $post_type_object->labels->name ); ?> <a href="<?php echo $post_new_file ?>" class="add-new-h2"><?php echo esc_html($post_type_object->labels->add_new); ?></a> <?php 224 <h2><?php 225 echo esc_html( $post_type_object->labels->name ); 226 if ( current_user_can( $post_type_object->cap->create_posts ) ) 227 echo ' <a href="' . esc_url( $post_new_file ) . '" class="add-new-h2">' . esc_html( $post_type_object->labels->add_new ) . '</a>'; 225 228 if ( ! empty( $_REQUEST['s'] ) ) 226 printf( ' <span class="subtitle">' . __('Search results for “%s”') . '</span>', get_search_query() ); ?>227 </h2>229 printf( ' <span class="subtitle">' . __('Search results for “%s”') . '</span>', get_search_query() ); 230 ?></h2> 228 231 229 232 <?php if ( isset( $_REQUEST['locked'] ) || isset( $_REQUEST['updated'] ) || isset( $_REQUEST['deleted'] ) || isset( $_REQUEST['trashed'] ) || isset( $_REQUEST['untrashed'] ) ) { 230 233 $messages = array();