diff options
author | Joas Schilling <coding@schilljs.com> | 2021-04-30 11:52:47 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2021-10-25 16:17:38 +0200 |
commit | 584d275a501e32fc6f8d962085a93d4ed2d05264 (patch) | |
tree | bfee5899cab76191e4f9a3957eac4cc2efe36be8 /apps/files/templates | |
parent | df0efe0d623439d6842a5a100a213d980b2895df (diff) | |
download | nextcloud-server-584d275a501e32fc6f8d962085a93d4ed2d05264.tar.gz nextcloud-server-584d275a501e32fc6f8d962085a93d4ed2d05264.zip |
Fix "No entries in this …" template
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/files/templates')
-rw-r--r-- | apps/files/templates/recentlist.php | 2 | ||||
-rw-r--r-- | apps/files/templates/simplelist.php | 2 |
2 files changed, 2 insertions, 2 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> |