Changeset 23554 for trunk/wp-admin/includes/class-wp-plugins-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-plugins-list-table.php
r23416 r23554 23 23 24 24 if ( isset($_REQUEST['s']) ) 25 $_SERVER['REQUEST_URI'] = add_query_arg('s', wp_unslash($_REQUEST['s']) );25 $_SERVER['REQUEST_URI'] = add_query_arg('s', stripslashes($_REQUEST['s']) ); 26 26 27 27 $page = $this->get_pagenum(); … … 141 141 static $term; 142 142 if ( is_null( $term ) ) 143 $term = wp_unslash( $_REQUEST['s'] );143 $term = stripslashes( $_REQUEST['s'] ); 144 144 145 145 foreach ( $plugin as $value )
Note: See TracChangeset
for help on using the changeset viewer.