- Timestamp:
- 03/11/2014 10:23:51 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-plugins-list-table.php
r27356 r27507 178 178 $term = wp_unslash( $_REQUEST['s'] ); 179 179 180 foreach ( $plugin as $value ) 181 if ( stripos( $value, $term ) !== false )180 foreach ( $plugin as $value ) { 181 if ( false !== stripos( strip_tags( $value ), $term ) ) { 182 182 return true; 183 } 184 } 183 185 184 186 return false;
Note: See TracChangeset
for help on using the changeset viewer.