Skip to content

Commit

Permalink
Merge pull request #27904 from owncloud/stable9-b523171c5cad8c8c97024…
Browse files Browse the repository at this point in the history
…4bd076edee19a450bc9

[stable9] escape filter in search
  • Loading branch information
Vincent Petry authored May 16, 2017
2 parents 93208ff + 78876dd commit a223db2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/files/js/filelist.js
Original file line number Diff line number Diff line change
Expand Up @@ -2320,7 +2320,7 @@
$('#searchresults').addClass('filter-empty');
if ( $('#searchresults').length === 0 || $('#searchresults').hasClass('hidden') ) {
this.$el.find('.nofilterresults').removeClass('hidden').
find('p').text(t('files', "No entries in this folder match '{filter}'", {filter:this._filter}, null, {'escape': false}));
find('p').text(t('files', 'No entries in this folder match {filter}', {filter:this._filter}));
}
} else {
$('#searchresults').removeClass('filter-empty');
Expand Down

0 comments on commit a223db2

Please sign in to comment.