Make WordPress Core

Changeset 22291


Ignore:
Timestamp:
10/24/2012 10:15:43 PM (12 years ago)
Author:
ryan
Message:

Use the create_posts capability in more places.

In get_post_type_capabilities(), make sure create_posts reflects customizations to the edit_posts capability when create_posts is not specifically set.

Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-form-advanced.php

    r22072 r22291  
    275275<div class="wrap">
    276276<?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
     278echo esc_html( $title );
     279if ( 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>
    278282<?php if ( $notice ) : ?>
    279283<div id="notice" class="error"><p><?php echo $notice ?></p></div>
  • trunk/wp-admin/edit.php

    r21597 r22291  
    222222<div class="wrap">
    223223<?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
     225echo esc_html( $post_type_object->labels->name );
     226if ( 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>';
    225228if ( ! empty( $_REQUEST['s'] ) )
    226     printf( '<span class="subtitle">' . __('Search results for &#8220;%s&#8221;') . '</span>', get_search_query() ); ?>
    227 </h2>
     229    printf( ' <span class="subtitle">' . __('Search results for &#8220;%s&#8221;') . '</span>', get_search_query() );
     230?></h2>
    228231
    229232<?php if ( isset( $_REQUEST['locked'] ) || isset( $_REQUEST['updated'] ) || isset( $_REQUEST['deleted'] ) || isset( $_REQUEST['trashed'] ) || isset( $_REQUEST['untrashed'] ) ) {
  • trunk/wp-admin/index.php

    r22089 r22291  
    7777if ( current_user_can( 'publish_posts' ) )
    7878    $help .= '<p>' . __('<strong>Incoming Links</strong> - Shows links to your site found by Google Blog Search.') . '</p>';
    79 if ( current_user_can( 'edit_posts' ) ) {
     79if ( current_user_can( 'create_posts' ) ) {
    8080    $help .= '<p>' . __('<strong>QuickPress</strong> - Allows you to create a new post and either publish it or save it as a draft.') . '</p>';
    8181    $help .= '<p>' . __('<strong>Recent Drafts</strong> - Displays links to the 5 most recent draft posts you&#8217;ve started.') . '</p>';
  • trunk/wp-admin/post-new.php

    r20453 r22291  
    3737$editing = true;
    3838
    39 if ( ! current_user_can( $post_type_object->cap->edit_posts ) )
     39if ( ! current_user_can( $post_type_object->cap->edit_posts ) || ! current_user_can( $post_type_object->cap->create_posts ) )
    4040    wp_die( __( 'Cheatin&#8217; uh?' ) );
    4141
  • trunk/wp-admin/press-this.php

    r22019 r22291  
    1414header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
    1515
    16 if ( ! current_user_can('edit_posts') )
     16if ( ! current_user_can( 'edit_posts' ) || ! current_user_can( 'create_posts' ) )
    1717    wp_die( __( 'Cheatin&#8217; uh?' ) );
    1818
  • trunk/wp-includes/post.php

    r22264 r22291  
    14121412        'publish_posts'      => 'publish_'      . $plural_base,
    14131413        'read_private_posts' => 'read_private_' . $plural_base,
    1414         // Post creation capability simply maps to edit_posts by default:
    1415         'create_posts'       => 'edit_'         . $plural_base,
    14161414    );
    14171415
     
    14311429
    14321430    $capabilities = array_merge( $default_capabilities, $args->capabilities );
     1431
     1432    // Post creation capability simply maps to edit_posts by default:
     1433    if ( ! isset( $capabilities['create_posts'] ) )
     1434        $capabilities['create_posts'] = $capabilities['edit_posts'];
    14331435
    14341436    // Remember meta capabilities for future reference.
Note: See TracChangeset for help on using the changeset viewer.