Make WordPress Core


Ignore:
Timestamp:
10/21/2010 03:15:50 PM (13 years ago)
Author:
scribu
Message:

Use isset() instead of '@'. Props Utkarsh. See #14579

File:
1 edited

Legend:

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

    r15843 r15893  
    149149        if ( 'page' == $key )
    150150            return $this->get_pagenum();
    151 
    152         return @$this->_pagination_args[ $key ];
     151           
     152        if ( isset( $this->_pagination_args[$key] ) )
     153            return $this->_pagination_args[$key];
    153154    }
    154155
Note: See TracChangeset for help on using the changeset viewer.