diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-07-21 02:23:42 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2016-07-21 02:23:42 +0200 |
commit | a9f2789df52d61894a61b8177abecdd53e26c634 (patch) | |
tree | 0293a7871edc86c6f5e7f3a5b6a1876127c0a566 | |
parent | 7c6896f091245393bedd12a9d06803a0252709ea (diff) | |
download | nextcloud-server-a9f2789df52d61894a61b8177abecdd53e26c634.tar.gz nextcloud-server-a9f2789df52d61894a61b8177abecdd53e26c634.zip |
Fix typo
-rw-r--r-- | lib/private/IntegrityCheck/Iterator/ExcludeFoldersByPathFilterIterator.php | 2 |
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'], '/'); } |