Skip to content

Commit

Permalink
Merge pull request #46894 from nextcloud/bugfix/noid/improve-explanat…
Browse files Browse the repository at this point in the history
…ion-of-timestamp

fix(trashbin): Improve documentation of since/until timestamps of res…
  • Loading branch information
nickvergessen authored Jul 30, 2024
2 parents 1df2f7e + bfd96b0 commit 3a9e154
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 @@ -88,13 +88,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 3a9e154

Please sign in to comment.