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

git-svn-id: http://svn.automattic.com/wordpress/trunk@6836 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-02-14 00:57:29 +00:00
parent 939cc4624a
commit 9b11e32fe1
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 ) {