aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-03-15 12:53:44 +0100
committerJoas Schilling <coding@schilljs.com>2017-03-15 12:53:44 +0100
commit0fe45966a0bc1ef4d1c668b82d6aa06c7be300fe (patch)
treef1890098d16a6581788c1e573ee288c7bdf6c495 /apps
parentc1cf872f1d99a614bf9d070d1923b78e3e2e26fb (diff)
downloadnextcloud-server-0fe45966a0bc1ef4d1c668b82d6aa06c7be300fe.tar.gz
nextcloud-server-0fe45966a0bc1ef4d1c668b82d6aa06c7be300fe.zip
Remove single quotes around search query like in user search
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/files/js/filelist.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 1f4b8f0ec68..1385fe26771 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -2553,7 +2553,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>'));
}