Change strong to avoid gettext ambiguity. Props RanYanivHartstein. fixes #5515

git-svn-id: https://develop.svn.wordpress.org/trunk@6836 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-02-14 00:57:29 +00:00
parent 7a334c8fa5
commit ab763df5c0
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ require_once ('admin-header.php');
<th><?php _e('Restrict Author:'); ?></th>
<td>
<select name="author">
<option value="all" selected="selected"><?php _e('All'); ?></option>
<option value="all" selected="selected"><?php _e('All Authors'); ?></option>
<?php
$authors = $wpdb->get_col( "SELECT post_author FROM $wpdb->posts GROUP BY post_author" );
foreach ( $authors as $id ) {