Make WordPress Core

Changeset 15541


Ignore:
Timestamp:
08/27/2010 12:24:41 AM (14 years ago)
Author:
scribu
Message:

Fix post_author_meta_box(). See #14572

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/meta-boxes.php

    r15539 r15541  
    509509
    510510?>
    511 <label class="screen-reader-text" for="post_author_override"><?php _e('Author'); ?></label><?php wp_dropdown_users( array('include' => $authors, 'name' => 'post_author_override', 'selected' => empty($post->ID) ? $user_ID : $post->post_author) ); ?>
     511<label class="screen-reader-text" for="post_author_override"><?php _e('Author'); ?></label><?php wp_dropdown_users( array('include' => $_editable_user_ids, 'name' => 'post_author_override', 'selected' => empty($post->ID) ? $user_ID : $post->post_author) ); ?>
    512512<?php
    513513}
Note: See TracChangeset for help on using the changeset viewer.