Make WordPress Core


Ignore:
Timestamp:
01/06/2011 04:11:14 AM (14 years ago)
Author:
ryan
Message:

Bring out the shears.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/class-wp-comments-list-table.php

    r17168 r17228  
    6767
    6868        $page = $this->get_pagenum();
    69        
     69
    7070        if ( isset( $_REQUEST['start'] ) ) {
    7171            $start = $_REQUEST['start'];
     
    7373            $start = ( $page - 1 ) * $comments_per_page;
    7474        }
    75        
     75
    7676        if ( $doing_ajax && isset( $_REQUEST['offset'] ) ) {
    7777            $start += $_REQUEST['offset'];
     
    116116        ) );
    117117    }
    118    
     118
    119119    function get_per_page( $comment_status = 'all' ) {
    120120        $comments_per_page = $this->get_items_per_page( 'edit_comments_per_page' );
     
    514514
    515515    function get_column_info() {
    516         $this->_column_headers = array( 
     516        $this->_column_headers = array(
    517517            array(
    518518            'author'   => __( 'Author' ),
     
    522522            array(),
    523523        );
    524        
     524
    525525        return $this->_column_headers;
    526526    }
    527    
     527
    528528    function get_table_classes() {
    529529        $classes = parent::get_table_classes();
     
    531531        return $classes;
    532532    }
    533    
     533
    534534    function display( $output_empty = false ) {
    535535        extract( $this->_args );
     
    542542<?php
    543543    }
    544    
     544
    545545    function get_per_page( $comment_status = false ) {
    546546        return 10;
Note: See TracChangeset for help on using the changeset viewer.