Changeset 20026
- Timestamp:
- 02/28/2012 08:41:53 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-themes-list-table.php
r19980 r20026 199 199 200 200 // In a tag? 201 if ( in_array( $word, array_map( 'sanitize_title_with_dashes', $theme['Tags'] )) )201 if ( in_array( $word, $theme['Tags'] ) ) 202 202 $matched = 1; 203 203 … … 217 217 foreach ( $this->features as $word ) { 218 218 // In a tag? 219 if ( !in_array( $word, array_map( 'sanitize_title_with_dashes', $theme['Tags'] )) )219 if ( !in_array( $word, $theme['Tags'] ) ) 220 220 return false; 221 221 }
Note: See TracChangeset
for help on using the changeset viewer.