Changes from branches/3.1/wp-admin/includes/class-wp-themes-list-table.php at r17436 to trunk/wp-admin/includes/class-wp-themes-list-table.php at r17691
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-themes-list-table.php
r17436 r17691 25 25 $themes = get_allowed_themes(); 26 26 27 $search = !empty( $_REQUEST['s'] ) ? trim( stripslashes( $_REQUEST['s'] ) ) : ''; 28 29 if ( '' !== $search ) { 27 if ( ! empty( $_REQUEST['s'] ) ) { 28 $search = strtolower( stripslashes( $_REQUEST['s'] ) ); 30 29 $this->search = array_merge( $this->search, array_filter( array_map( 'trim', explode( ',', $search ) ) ) ); 31 30 $this->search = array_unique( $this->search );
Note: See TracChangeset
for help on using the changeset viewer.