Skip to content

Commit

Permalink
Simplify max_data parameter for Temporal::getDateTimeField
Browse files Browse the repository at this point in the history
  • Loading branch information
MrPetovan committed Sep 15, 2021
1 parent 6964213 commit 9a0c3cc
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 9a0c3cc

Please sign in to comment.