729 | | if ( 'edit_comments_per_page' == $option ) { |
730 | | $comment_status = isset( $_REQUEST['comment_status'] ) ? $_REQUEST['comment_status'] : 'all'; |
731 | | $per_page = apply_filters( 'comments_per_page', $per_page, $comment_status ); |
732 | | } elseif ( 'categories_per_page' == $option ) { |
733 | | $per_page = apply_filters( 'edit_categories_per_page', $per_page ); |
734 | | } else { |
735 | | $per_page = apply_filters( $option, $per_page ); |
736 | | } |
| 728 | if ( 'edit_comments_per_page' == $option ) { |
| 729 | $comment_status = isset( $_REQUEST['comment_status'] ) ? $_REQUEST['comment_status'] : 'all'; |
| 730 | $per_page = apply_filters( 'comments_per_page', $per_page, $comment_status ); |
| 731 | } elseif ( 'categories_per_page' == $option ) { |
| 732 | $per_page = apply_filters( 'edit_categories_per_page', $per_page ); |
| 733 | } else { |
| 734 | $per_page = apply_filters( $option, $per_page ); |
| 735 | } |