aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/lib/Command
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-09-06 10:28:26 +0200
committerGitHub <noreply@github.com>2022-09-06 10:28:26 +0200
commitba99f1ca0ffd128c1cd3d13c0a5735fe14bc12e5 (patch)
treee417a60ccd830738dae1a6adc6b778fb0c4548ab /apps/files/lib/Command
parent405edfa90c851937af13e26a82754310ded0072a (diff)
parent9d26671f05275055619960a66981201ed660bdd2 (diff)
downloadnextcloud-server-ba99f1ca0ffd128c1cd3d13c0a5735fe14bc12e5.tar.gz
nextcloud-server-ba99f1ca0ffd128c1cd3d13c0a5735fe14bc12e5.zip
Merge pull request #33895 from nextcloud/fix/fix-apps-typos
Fix typos in apps/ subdirectory
Diffstat (limited to 'apps/files/lib/Command')
-rw-r--r--apps/files/lib/Command/RepairTree.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/lib/Command/RepairTree.php b/apps/files/lib/Command/RepairTree.php
index 4fe64ef0edf..521fe3d6a4a 100644
--- a/apps/files/lib/Command/RepairTree.php
+++ b/apps/files/lib/Command/RepairTree.php
@@ -68,7 +68,7 @@ class RepairTree extends Command {
->where($query->expr()->eq('fileid', $query->createParameter('fileid')));
foreach ($rows as $row) {
- $output->writeln("Path of file {$row['fileid']} is {$row['path']} but should be {$row['parent_path']}/{$row['name']} based on it's parent", OutputInterface::VERBOSITY_VERBOSE);
+ $output->writeln("Path of file {$row['fileid']} is {$row['path']} but should be {$row['parent_path']}/{$row['name']} based on its parent", OutputInterface::VERBOSITY_VERBOSE);
if ($fix) {
$fileId = $this->getFileId((int)$row['parent_storage'], $row['parent_path'] . '/' . $row['name']);