Skip to content

Commit

Permalink
Merge pull request #46900 from nextcloud/backport/46894/stable29
Browse files Browse the repository at this point in the history
[stable29] fix(trashbin): Improve documentation of since/until timestamps of res…
  • Loading branch information
nickvergessen committed Jul 30, 2024
2 parents a51e297 + d198acc commit 0298e84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/files_trashbin/lib/Command/RestoreAllFiles.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ protected function configure(): void {
'since',
null,
InputOption::VALUE_OPTIONAL,
'Only restore files deleted after the given timestamp'
'Only restore files deleted after the given date and time, see https://www.php.net/manual/en/function.strtotime.php for more information on supported formats'
)
->addOption(
'until',
null,
InputOption::VALUE_OPTIONAL,
'Only restore files deleted before the given timestamp'
'Only restore files deleted before the given date and time, see https://www.php.net/manual/en/function.strtotime.php for more information on supported formats'
)
->addOption(
'dry-run',
Expand Down

0 comments on commit 0298e84

Please sign in to comment.