Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolkan Gezer <wakeup@users.noreply.github.com>2015-01-10 20:11:36 +0300
committerVolkan Gezer <wakeup@users.noreply.github.com>2015-01-10 20:11:36 +0300
commit33bb69e3e6251872c3d95a785462d34f45aa228b (patch)
tree8790155536bc5bb952ef2dcb2b75540c835f1136
parentc91d47e5b3ad8b2b6d30f7f4fdeff1a1d7e744a5 (diff)
parente4840b5250039d8a5ba092bec4f7923de3e37937 (diff)
Merge pull request #13226 from owncloud/fix-encoding
Don't double encode string
-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 e680ef4b3ed..2027f62aa02 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -1692,7 +1692,7 @@
this.$el.find('#emptycontent').addClass('hidden');
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}));
+ find('p').text(t('files', "No entries in this folder match '{filter}'", {filter:this._filter}, null, {'escape': false}));
}
} else {
this.$el.find('#filestable thead th').toggleClass('hidden', this.isEmpty);