mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-09 01:48:21 +01:00
Fix broken translations. Fixes #5865 props hervada.
git-svn-id: http://svn.automattic.com/wordpress/trunk@6869 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
089c2f1d8d
commit
13d23eeae3
@ -91,7 +91,7 @@ foreach ( $post_stati as $status => $label ) {
|
||||
sprintf($label[2], $num_posts->$status) . '</a>';
|
||||
}
|
||||
$class = empty($_GET['post_status']) ? ' class="current"' : '';
|
||||
$status_links[] = "<li><a href=\"edit-pages.php\"$class><?php _e('All Pages'); ?></a>";
|
||||
$status_links[] = "<li><a href=\"edit-pages.php\"$class>".__('All Pages')."</a>";
|
||||
echo implode(' |</li>', $status_links) . '</li>';
|
||||
unset($status_links);
|
||||
?>
|
||||
|
@ -98,7 +98,7 @@ foreach ( $post_stati as $status => $label ) {
|
||||
sprintf($label[2], $num_posts->$status) . '</a>';
|
||||
}
|
||||
$class = empty($_GET['post_status']) ? ' class="current"' : '';
|
||||
$status_links[] = "<li><a href=\"edit.php\"$class><?php _e('All Posts'); ?></a>";
|
||||
$status_links[] = "<li><a href=\"edit.php\"$class>".__('All Posts')."</a>";
|
||||
echo implode(' |</li>', $status_links) . '</li>';
|
||||
unset($status_links);
|
||||
?>
|
||||
|
Loading…
Reference in New Issue
Block a user