diff options
author | kondou <kondou@ts.unde.re> | 2013-04-18 18:28:03 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-07-10 02:34:00 +0200 |
commit | 2f11f56d323cc7a559ecc42f521083301479920e (patch) | |
tree | b886cc963f7550cb54da931416a4f3d58920fada /apps/files_trashbin/templates/index.php | |
parent | 7ec6f3bde9ccaa7c53bf500fff222a7b25a4a44c (diff) | |
download | nextcloud-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.php | 2 |
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; ?> |