aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin
diff options
context:
space:
mode:
authorRobin Windey <ro.windey@gmail.com>2023-08-16 08:40:21 +0000
committerRobin Windey <ro.windey@gmail.com>2023-08-18 07:25:39 +0200
commitd7a73ffdf1b87d9e56e02446f3e2cd3c725d30a5 (patch)
tree9afbe8e6c4a7552d00aec14377baa4f14636c6b5 /apps/files_trashbin
parentacf0b4ce34be0c7a9770c5032b8bd604d2dc22a6 (diff)
downloadnextcloud-server-d7a73ffdf1b87d9e56e02446f3e2cd3c725d30a5.tar.gz
nextcloud-server-d7a73ffdf1b87d9e56e02446f3e2cd3c725d30a5.zip
Rename since/until in verbose message
Signed-off-by: GitHub <noreply@github.com>
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r--apps/files_trashbin/lib/Command/RestoreAllFiles.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_trashbin/lib/Command/RestoreAllFiles.php b/apps/files_trashbin/lib/Command/RestoreAllFiles.php
index f071526680c..cd79f1e8def 100644
--- a/apps/files_trashbin/lib/Command/RestoreAllFiles.php
+++ b/apps/files_trashbin/lib/Command/RestoreAllFiles.php
@@ -276,13 +276,13 @@ class RestoreAllFiles extends Base {
// Check left timestamp boundary
if ($since !== null && $trashItem->getDeletedTime() <= $since) {
- $output->writeln("Skipping <info>" . $trashItem->getName() . "</info> because it was deleted before the restore-from timestamp", OutputInterface::VERBOSITY_VERBOSE);
+ $output->writeln("Skipping <info>" . $trashItem->getName() . "</info> because it was deleted before the 'since' timestamp", OutputInterface::VERBOSITY_VERBOSE);
continue;
}
// Check right timestamp boundary
if ($until !== null && $trashItem->getDeletedTime() >= $until) {
- $output->writeln("Skipping <info>" . $trashItem->getName() . "</info> because it was deleted after the restore-to timestamp", OutputInterface::VERBOSITY_VERBOSE);
+ $output->writeln("Skipping <info>" . $trashItem->getName() . "</info> because it was deleted after the 'until' timestamp", OutputInterface::VERBOSITY_VERBOSE);
continue;
}