Skip to content

Commit

Permalink
Simplify max_data parameter for Temporal::getDateTimeField in include…
Browse files Browse the repository at this point in the history
…/conversation
  • Loading branch information
MrPetovan committed Sep 14, 2021
1 parent 2ed509f commit dc673fe
Showing 1 changed file with 2 additions and 2 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

0 comments on commit dc673fe

Please sign in to comment.