diff options
author | Martin <martin.mattel@diemattels.at> | 2015-09-21 14:09:28 +0200 |
---|---|---|
committer | root <martin.mattel@diemattels.at> | 2015-09-22 17:53:15 +0200 |
commit | 491250320a6b19f9a7d546598e97eac1e90f78f7 (patch) | |
tree | 1021d069627a22699713f5c75eba17dac97f734c /apps/files_trashbin/lib | |
parent | 7222e5fb4d8e165733fac4ac9c85e471c0d34fb7 (diff) | |
download | nextcloud-server-491250320a6b19f9a7d546598e97eac1e90f78f7.tar.gz nextcloud-server-491250320a6b19f9a7d546598e97eac1e90f78f7.zip |
Replaces if ($file === '.' || $file === '..') by if(\OC\Files\Filesystem::isIgnoredDir($file)). Eases to find where this operation is used.
Diffstat (limited to 'apps/files_trashbin/lib')
-rw-r--r-- | apps/files_trashbin/lib/trashbin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/lib/trashbin.php b/apps/files_trashbin/lib/trashbin.php index 3b2d4cf5929..2a9df94988d 100644 --- a/apps/files_trashbin/lib/trashbin.php +++ b/apps/files_trashbin/lib/trashbin.php @@ -895,7 +895,7 @@ class Trashbin { $view = new \OC\Files\View('/' . $user . '/files_trashbin'); if ($view->is_dir('/files') && $dh = $view->opendir('/files')) { while ($file = readdir($dh)) { - if ($file !== '.' and $file !== '..') { + if (!\OC\Files\Filesystem::isIgnoredDir($file)) { return false; } } |