Skip to content

Commit

Permalink
Merge pull request #10715 from MrPetovan/bug/10691-scheduled-date-pic…
Browse files Browse the repository at this point in the history
…ker-timezone

Simplify max_data parameter for Temporal::getDateTimeField in include/conversation
  • Loading branch information
annando committed Sep 15, 2021
2 parents 6964213 + 9a0c3cc commit 174a47c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions include/conversation.php
Original file line number Diff line number Diff line change
Expand Up @@ -1147,10 +1147,10 @@ function status_editor(App $a, array $x = [], $notes_cid = 0, $popup = false)
'$placeholdercategory' => Feature::isEnabled(local_user(), 'categories') ? DI::l10n()->t("Categories \x28comma-separated list\x29") : '',
'$scheduled_at' => Temporal::getDateTimeField(
new DateTime(),
DateTime::createFromFormat(DateTimeFormat::MYSQL, DateTimeFormat::local('now + 6 months')),
new DateTime('now + 6 months'),
null,
DI::l10n()->t('Scheduled at'),
'scheduled_at',
'scheduled_at'
),
'$wait' => DI::l10n()->t('Please wait'),
'$permset' => DI::l10n()->t('Permission settings'),
Expand Down
5 changes: 2 additions & 3 deletions src/Module/Item/Compose.php
Original file line number Diff line number Diff line change
Expand Up @@ -167,13 +167,12 @@ public static function content(array $parameters = [])
'$placeholdercategory' => (Feature::isEnabled(local_user(),'categories') ? DI::l10n()->t('Categories (comma-separated list)') : ''),
'$scheduled_at' => Temporal::getDateTimeField(
new DateTime(),
DateTime::createFromFormat(DateTimeFormat::MYSQL, DateTimeFormat::local('now + 6 months')),
new DateTime('now + 6 months'),
null,
DI::l10n()->t('Scheduled at'),
'scheduled_at',
'scheduled_at'
),


'$title' => $title,
'$category' => $category,
'$body' => $body,
Expand Down

0 comments on commit 174a47c

Please sign in to comment.