Ticket #12398: 12398-typofix.patch
| File 12398-typofix.patch, 677 bytes (added by , 16 years ago) |
|---|
-
template.php
673 673 if ( 'page' == $post_type ) 674 674 $posts_columns = apply_filters( 'manage_pages_columns', $posts_columns ); 675 675 else 676 $post _columns = apply_filters( 'manage_posts_columns', $posts_columns, $post_type );677 $post _columns = apply_filters( "manage_{$post_type}_posts_columns", $posts_columns );676 $posts_columns = apply_filters( 'manage_posts_columns', $posts_columns, $post_type ); 677 $posts_columns = apply_filters( "manage_{$post_type}_posts_columns", $posts_columns ); 678 678 679 679 return $posts_columns; 680 680 }