]> source.dussan.org Git - nextcloud-server.git/commitdiff
Rename since/until in verbose message 40581/head
authorRobin Windey <ro.windey@gmail.com>
Wed, 16 Aug 2023 08:40:21 +0000 (08:40 +0000)
committerbackportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com>
Fri, 22 Sep 2023 11:14:54 +0000 (11:14 +0000)
Signed-off-by: GitHub <noreply@github.com>
apps/files_trashbin/lib/Command/RestoreAllFiles.php

index f071526680c0b0f70c9df3782e61d541da517ff4..cd79f1e8def688453129112d56bbd3c8fdce5ed2 100644 (file)
@@ -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;
                        }