Make WordPress Core

Ticket #26409: 26409.diff

File 26409.diff, 2.9 KB (added by obenland, 11 years ago)
  • wp-admin/includes/meta-boxes.php

     
    386386        extract( wp_parse_args($args, $defaults), EXTR_SKIP );
    387387        $tax_name = esc_attr($taxonomy);
    388388        $taxonomy = get_taxonomy($taxonomy);
    389         $user_can_assign_terms = current_user_can( $taxonomy->cap->assign_terms );
    390389        $comma = _x( ',', 'tag delimiter' );
     390
     391        if ( current_user_can( $taxonomy->cap->assign_terms ) ) :
    391392?>
    392393<div class="tagsdiv" id="<?php echo $tax_name; ?>">
    393394        <div class="jaxtag">
    394395        <div class="nojs-tags hide-if-js">
    395396        <p><?php echo $taxonomy->labels->add_or_remove_items; ?></p>
    396         <textarea name="<?php echo "tax_input[$tax_name]"; ?>" rows="3" cols="20" class="the-tags" id="tax-input-<?php echo $tax_name; ?>" <?php disabled( ! $user_can_assign_terms ); ?>><?php echo str_replace( ',', $comma . ' ', get_terms_to_edit( $post->ID, $tax_name ) ); // textarea_escaped by esc_attr() ?></textarea></div>
    397         <?php if ( $user_can_assign_terms ) : ?>
     397        <textarea name="<?php echo "tax_input[$tax_name]"; ?>" rows="3" cols="20" class="the-tags" id="tax-input-<?php echo $tax_name; ?>"><?php echo str_replace( ',', $comma . ' ', get_terms_to_edit( $post->ID, $tax_name ) ); // textarea_escaped by esc_attr() ?></textarea></div>
    398398        <div class="ajaxtag hide-if-no-js">
    399399                <label class="screen-reader-text" for="new-tag-<?php echo $tax_name; ?>"><?php echo $box['title']; ?></label>
    400400                <div class="taghint"><?php echo $taxonomy->labels->add_new_item; ?></div>
     
    402402                <input type="button" class="button tagadd" value="<?php esc_attr_e('Add'); ?>" /></p>
    403403        </div>
    404404        <p class="howto"><?php echo $taxonomy->labels->separate_items_with_commas; ?></p>
    405         <?php endif; ?>
    406405        </div>
    407406        <div class="tagchecklist"></div>
    408407</div>
    409 <?php if ( $user_can_assign_terms ) : ?>
    410408<p class="hide-if-no-js"><a href="#titlediv" class="tagcloud-link" id="link-<?php echo $tax_name; ?>"><?php echo $taxonomy->labels->choose_from_most_used; ?></a></p>
    411 <?php endif; ?>
    412409<?php
     410        endif;
    413411}
    414412
    415413/**
     
    428426        extract( wp_parse_args($args, $defaults), EXTR_SKIP );
    429427        $tax = get_taxonomy($taxonomy);
    430428
     429        if ( current_user_can( $tax->cap->assign_terms ) ) :
    431430        ?>
    432431        <div id="taxonomy-<?php echo $taxonomy; ?>" class="categorydiv">
    433432                <ul id="<?php echo $taxonomy; ?>-tabs" class="category-tabs">
     
    450449                                <?php wp_terms_checklist($post->ID, array( 'taxonomy' => $taxonomy, 'popular_cats' => $popular_ids ) ) ?>
    451450                        </ul>
    452451                </div>
    453         <?php if ( current_user_can($tax->cap->edit_terms) ) : ?>
    454452                        <div id="<?php echo $taxonomy; ?>-adder" class="wp-hidden-children">
    455453                                <h4>
    456454                                        <a id="<?php echo $taxonomy; ?>-add-toggle" href="#<?php echo $taxonomy; ?>-add" class="hide-if-no-js">
     
    472470                                        <span id="<?php echo $taxonomy; ?>-ajax-response"></span>
    473471                                </p>
    474472                        </div>
    475                 <?php endif; ?>
    476473        </div>
    477474        <?php
     475        endif;
    478476}
    479477
    480478/**