diff --git a/src/definitions/modules/search.js b/src/definitions/modules/search.js index 975797e9e..6a331e63a 100644 --- a/src/definitions/modules/search.js +++ b/src/definitions/modules/search.js @@ -305,7 +305,7 @@ $.fn.search = function(parameters) { if( content[field].match(searchRegExp) ) { results.push(content); } - else if( settings.searchFullText && content[field].match(content[field]) ) { + else if( settings.searchFullText && content[field].match(fullTextRegExp) ) { fullTextResults.push(content); } }