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

git-svn-id: https://develop.svn.wordpress.org/trunk@15893 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
scribu 2010-10-21 15:15:50 +00:00
parent c5b02e9685
commit 82a68a8979

View File

@ -149,7 +149,8 @@ class WP_List_Table {
if ( 'page' == $key ) if ( 'page' == $key )
return $this->get_pagenum(); return $this->get_pagenum();
return @$this->_pagination_args[ $key ]; if ( isset( $this->_pagination_args[$key] ) )
return $this->_pagination_args[$key];
} }
/** /**