diff options
author | Joas Schilling <coding@schilljs.com> | 2017-03-15 12:53:44 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-03-15 13:01:33 +0100 |
commit | bc7afb55b85d40e2b51d67295f699aa6fc805602 (patch) | |
tree | 85563f02769503e18e68a0c167a17f53c264519b /apps/files | |
parent | e44f6e9235f9d3ba2e93d0b771c8a20fbfad9812 (diff) | |
download | nextcloud-server-bc7afb55b85d40e2b51d67295f699aa6fc805602.tar.gz nextcloud-server-bc7afb55b85d40e2b51d67295f699aa6fc805602.zip |
Remove single quotes around search query like in user search
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/filelist.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 3fb016b77e7..66d1cf3d8b0 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -2538,7 +2538,7 @@ $('#searchresults').addClass('filter-empty'); $('#searchresults .emptycontent').addClass('emptycontent-search'); if ( $('#searchresults').length === 0 || $('#searchresults').hasClass('hidden') ) { - var error = t('files', "No search results in other folders for '{tag}{filter}{endtag}'", {filter:this._filter}, null, {'escape': false}); + var error = t('files', 'No search results in other folders for {tag}{filter}{endtag}', {filter:this._filter}); this.$el.find('.nofilterresults').removeClass('hidden'). find('p').html(error.replace('{tag}', '<strong>').replace('{endtag}', '</strong>')); } |