Fix typos. props TobiasBg fixes #12398

git-svn-id: https://develop.svn.wordpress.org/trunk@13455 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-02-27 15:53:06 +00:00
parent 44051cfdb6
commit 3a0b94a917
1 changed files with 2 additions and 2 deletions

View File

@ -673,8 +673,8 @@ function wp_manage_posts_columns( $screen = '') {
if ( 'page' == $post_type )
$posts_columns = apply_filters( 'manage_pages_columns', $posts_columns );
else
$post_columns = apply_filters( 'manage_posts_columns', $posts_columns, $post_type );
$post_columns = apply_filters( "manage_{$post_type}_posts_columns", $posts_columns );
$posts_columns = apply_filters( 'manage_posts_columns', $posts_columns, $post_type );
$posts_columns = apply_filters( "manage_{$post_type}_posts_columns", $posts_columns );
return $posts_columns;
}