summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Windey <ro.windey@gmail.com>2023-08-16 08:40:21 +0000
committerbackportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com>2023-09-22 11:14:54 +0000
commitf42481f89330fc5f7cb029021c823a7c9182c3e4 (patch)
tree807995e69759749bcfc7a578b0d6a8bffdfa5313
parent9630de5674871d4c40f94f9dfe01504db27d40b5 (diff)
downloadnextcloud-server-f42481f89330fc5f7cb029021c823a7c9182c3e4.tar.gz
nextcloud-server-f42481f89330fc5f7cb029021c823a7c9182c3e4.zip
Rename since/until in verbose message
Signed-off-by: GitHub <noreply@github.com>
-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;
}