String fixes. props demetris. fixes #15688.

git-svn-id: http://svn.automattic.com/wordpress/trunk@16734 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin
2010-12-05 14:31:18 +00:00
parent 9722f6a8cb
commit d9b4dcf576
4 changed files with 4 additions and 4 deletions

View File

@@ -841,7 +841,7 @@ class WP_Posts_List_Table extends WP_List_Table {
<label>
<span class="title"><?php _e( 'Parent' ); ?></span>
<?php
$dropdown_args = array( 'post_type' => $post_type_object->name, 'selected' => $post->post_parent, 'name' => 'post_parent', 'show_option_none' => __( 'Main Page ( no parent )' ), 'option_none_value' => 0, 'sort_column'=> 'menu_order, post_title' );
$dropdown_args = array( 'post_type' => $post_type_object->name, 'selected' => $post->post_parent, 'name' => 'post_parent', 'show_option_none' => __( 'Main Page (no parent)' ), 'option_none_value' => 0, 'sort_column'=> 'menu_order, post_title' );
if ( $bulk )
$dropdown_args['show_option_no_change'] = __( '&mdash; No Change &mdash;' );
$dropdown_args = apply_filters( 'quick_edit_dropdown_pages_args', $dropdown_args );