Make WordPress Core


Ignore:
Timestamp:
06/16/2015 08:00:15 PM (8 years ago)
Author:
wonderboymusic
Message:

if is a statment, not a function.

See #32444.

File:
1 edited

Legend:

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

    r32724 r32800  
    635635        $pagenum = isset( $_REQUEST['paged'] ) ? absint( $_REQUEST['paged'] ) : 0;
    636636
    637         if( isset( $this->_pagination_args['total_pages'] ) && $pagenum > $this->_pagination_args['total_pages'] )
     637        if ( isset( $this->_pagination_args['total_pages'] ) && $pagenum > $this->_pagination_args['total_pages'] )
    638638            $pagenum = $this->_pagination_args['total_pages'];
    639639
Note: See TracChangeset for help on using the changeset viewer.