summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2016-07-21 02:23:42 +0200
committerLukas Reschke <lukas@statuscode.ch>2016-07-21 02:23:42 +0200
commita9f2789df52d61894a61b8177abecdd53e26c634 (patch)
tree0293a7871edc86c6f5e7f3a5b6a1876127c0a566
parent7c6896f091245393bedd12a9d06803a0252709ea (diff)
downloadnextcloud-server-a9f2789df52d61894a61b8177abecdd53e26c634.tar.gz
nextcloud-server-a9f2789df52d61894a61b8177abecdd53e26c634.zip
Fix typo
-rw-r--r--lib/private/IntegrityCheck/Iterator/ExcludeFoldersByPathFilterIterator.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/IntegrityCheck/Iterator/ExcludeFoldersByPathFilterIterator.php b/lib/private/IntegrityCheck/Iterator/ExcludeFoldersByPathFilterIterator.php
index 3885f3dfa6a..80a89e8c3a4 100644
--- a/lib/private/IntegrityCheck/Iterator/ExcludeFoldersByPathFilterIterator.php
+++ b/lib/private/IntegrityCheck/Iterator/ExcludeFoldersByPathFilterIterator.php
@@ -29,7 +29,7 @@ class ExcludeFoldersByPathFilterIterator extends \RecursiveFilterIterator {
parent::__construct($iterator);
$appFolders = \OC::$APPSROOTS;
- foreach($appFolders as $key => $appFolder) {c
+ foreach($appFolders as $key => $appFolder) {
$appFolders[$key] = rtrim($appFolder['path'], '/');
}