summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/templates/index.php
diff options
context:
space:
mode:
authorkondou <kondou@ts.unde.re>2013-04-18 18:28:03 +0200
committerkondou <kondou@ts.unde.re>2013-07-10 02:34:00 +0200
commit2f11f56d323cc7a559ecc42f521083301479920e (patch)
treeb886cc963f7550cb54da931416a4f3d58920fada /apps/files_trashbin/templates/index.php
parent7ec6f3bde9ccaa7c53bf500fff222a7b25a4a44c (diff)
downloadnextcloud-server-2f11f56d323cc7a559ecc42f521083301479920e.tar.gz
nextcloud-server-2f11f56d323cc7a559ecc42f521083301479920e.zip
Use !== and === in files_trashbin-app
Diffstat (limited to 'apps/files_trashbin/templates/index.php')
-rw-r--r--apps/files_trashbin/templates/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php
index 66ec36df867..371765fa69a 100644
--- a/apps/files_trashbin/templates/index.php
+++ b/apps/files_trashbin/templates/index.php
@@ -5,7 +5,7 @@
</div>
<div id='notification'></div>
-<?php if (isset($_['files']) && count($_['files'])==0 && $_['dirlisting'] == false):?>
+<?php if (isset($_['files']) && count($_['files']) === 0 && $_['dirlisting'] === false):?>
<div id="emptyfolder"><?php p($l->t('Nothing in here. Your trash bin is empty!'))?></div>
<?php endif; ?>