Make WordPress Core


Ignore:
Timestamp:
03/01/2013 04:28:40 PM (13 years ago)
Author:
ryan
Message:

Revert 23416, 23419, 23445 except for wp_reset_vars() changes. We are going a different direction with the slashing cleanup, so resetting to a clean slate. see #21767

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/class-wp-ms-sites-list-table.php

    r23416 r23554  
    3030        $pagenum = $this->get_pagenum();
    3131
    32         $s = isset( $_REQUEST['s'] ) ? wp_unslash( trim( $_REQUEST[ 's' ] ) ) : '';
     32        $s = isset( $_REQUEST['s'] ) ? stripslashes( trim( $_REQUEST[ 's' ] ) ) : '';
    3333        $wild = '';
    3434        if ( false !== strpos($s, '*') ) {
Note: See TracChangeset for help on using the changeset viewer.