Changeset 23554 for trunk/wp-admin/includes/class-wp-themes-list-table.php
- Timestamp:
- 03/01/2013 04:28:40 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-themes-list-table.php
r23416 r23554 29 29 30 30 if ( ! empty( $_REQUEST['s'] ) ) 31 $this->search_terms = array_unique( array_filter( array_map( 'trim', explode( ',', strtolower( wp_unslash( $_REQUEST['s'] ) ) ) ) ) );31 $this->search_terms = array_unique( array_filter( array_map( 'trim', explode( ',', strtolower( stripslashes( $_REQUEST['s'] ) ) ) ) ) ); 32 32 33 33 if ( ! empty( $_REQUEST['features'] ) ) … … 236 236 */ 237 237 function _js_vars( $extra_args = array() ) { 238 $search_string = isset( $_REQUEST['s'] ) ? esc_attr( wp_unslash( $_REQUEST['s'] ) ) : '';238 $search_string = isset( $_REQUEST['s'] ) ? esc_attr( stripslashes( $_REQUEST['s'] ) ) : ''; 239 239 240 240 $args = array(
Note: See TracChangeset
for help on using the changeset viewer.