diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2024-07-31 00:18:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-31 00:18:50 +0200 |
commit | 3a9e154d38f1812039f324f84a115c21e96967b5 (patch) | |
tree | cbcab3734cbabc41255c41dd045d1fdc5608713f | |
parent | 1df2f7ee0ef45ff5175f829cc92f7329f54eb94c (diff) | |
parent | bfd96b070b537f5e32df0e17eee75b1947377c53 (diff) | |
download | nextcloud-server-3a9e154d38f1812039f324f84a115c21e96967b5.tar.gz nextcloud-server-3a9e154d38f1812039f324f84a115c21e96967b5.zip |
Merge pull request #46894 from nextcloud/bugfix/noid/improve-explanation-of-timestamp
fix(trashbin): Improve documentation of since/until timestamps of res…
-rw-r--r-- | apps/files_trashbin/lib/Command/RestoreAllFiles.php | 4 |
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 dbfb4ed4cfd..103ada3f18f 100644 --- a/apps/files_trashbin/lib/Command/RestoreAllFiles.php +++ b/apps/files_trashbin/lib/Command/RestoreAllFiles.php @@ -88,13 +88,13 @@ class RestoreAllFiles extends Base { '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', |