From 2d746762370d6ddf8f284e96be6aad8ed6b7f049 Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Fri, 29 Nov 2013 22:17:28 +0000 Subject: [PATCH] Themes: Search the description too. props dd32. fixes #26309. git-svn-id: https://develop.svn.wordpress.org/trunk@26480 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/js/theme.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/js/theme.js b/src/wp-admin/js/theme.js index 7318f3ba5b..2e96e25c19 100644 --- a/src/wp-admin/js/theme.js +++ b/src/wp-admin/js/theme.js @@ -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 );