Remove debug cruft.

git-svn-id: https://develop.svn.wordpress.org/trunk@20068 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2012-03-02 00:13:05 +00:00
parent 514b909597
commit eee4414129
1 changed files with 1 additions and 3 deletions

View File

@ -29,10 +29,8 @@ class WP_Themes_List_Table extends WP_List_Table {
if ( ! empty( $_REQUEST['s'] ) )
$this->search_terms = array_unique( array_filter( array_map( 'trim', explode( ',', strtolower( stripslashes( $_REQUEST['s'] ) ) ) ) ) );
if ( ! empty( $_REQUEST['features'] ) ) {
var_dump( $_REQUEST['features'] );
if ( ! empty( $_REQUEST['features'] ) )
$this->features = $_REQUEST['features'];
}
if ( $this->search_terms || $this->features ) {
foreach ( $themes as $key => $theme ) {