summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-04-30 11:52:47 +0200
committerJulius Härtl <jus@bitgrid.net>2021-10-26 10:58:25 +0200
commitc154b5289ad79abcb9186abc5780ac42c205ef66 (patch)
tree8afec6d227f8c017883ba43873e461d5acba79db /apps
parent4133774c0c380767c6c70db3a25a73fb3a49fb8b (diff)
downloadnextcloud-server-c154b5289ad79abcb9186abc5780ac42c205ef66.tar.gz
nextcloud-server-c154b5289ad79abcb9186abc5780ac42c205ef66.zip
Fix "No entries in this …" template
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/files/templates/recentlist.php2
-rw-r--r--apps/files/templates/simplelist.php2
-rw-r--r--apps/files_sharing/templates/list.php2
-rw-r--r--apps/files_trashbin/templates/index.php2
4 files changed, 4 insertions, 4 deletions
diff --git a/apps/files/templates/recentlist.php b/apps/files/templates/recentlist.php
index 95997288193..8a556a6dc1d 100644
--- a/apps/files/templates/recentlist.php
+++ b/apps/files/templates/recentlist.php
@@ -5,7 +5,7 @@
<input type="hidden" name="dir" value="" id="dir">
-<div class="nofilterresults hidden">
+<div class="nofilterresults emptycontent hidden">
<div class="icon-search"></div>
<h2><?php p($l->t('No entries found in this folder')); ?></h2>
<p></p>
diff --git a/apps/files/templates/simplelist.php b/apps/files/templates/simplelist.php
index ee07cd0955c..24bd1c8ca2a 100644
--- a/apps/files/templates/simplelist.php
+++ b/apps/files/templates/simplelist.php
@@ -8,7 +8,7 @@
<input type="hidden" name="dir" value="" id="dir">
-<div class="nofilterresults hidden">
+<div class="nofilterresults emptycontent hidden">
<div class="icon-search"></div>
<h2><?php p($l->t('No entries found in this folder')); ?></h2>
<p></p>
diff --git a/apps/files_sharing/templates/list.php b/apps/files_sharing/templates/list.php
index 4b216de8e70..983e70d4433 100644
--- a/apps/files_sharing/templates/list.php
+++ b/apps/files_sharing/templates/list.php
@@ -5,7 +5,7 @@
<input type="hidden" name="dir" value="" id="dir">
-<div class="nofilterresults hidden">
+<div class="nofilterresults emptycontent hidden">
<div class="icon-search"></div>
<h2><?php p($l->t('No entries found in this folder')); ?></h2>
</div>
diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php
index 6d375b699f3..fcd5448db4b 100644
--- a/apps/files_trashbin/templates/index.php
+++ b/apps/files_trashbin/templates/index.php
@@ -12,7 +12,7 @@
<input type="hidden" name="dir" value="" id="dir">
-<div class="nofilterresults hidden">
+<div class="nofilterresults emptycontent hidden">
<div class="icon-search"></div>
<h2><?php p($l->t('No entries found in this folder')); ?></h2>
<p></p>