mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
Themes: Search the description too.
props dd32. fixes #26309. git-svn-id: https://develop.svn.wordpress.org/trunk@26480 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -133,7 +133,7 @@ themes.Collection = Backbone.Collection.extend({
|
||||
// Find results
|
||||
// _.filter and .test
|
||||
results = self.filter( function( data ) {
|
||||
haystack = _.union( data.get( 'name' ), data.get( 'author' ), data.get( 'tags' ) );
|
||||
haystack = _.union( data.get( 'name' ), data.get( 'description' ), data.get( 'author' ), data.get( 'tags' ) );
|
||||
|
||||
if ( match.test( data.get( 'author' ) ) ) {
|
||||
data.set( 'displayAuthor', true );
|
||||
|
||||
Reference in New Issue
Block a user