Skip to content

Commit

Permalink
Merge pull request #3066 from ec-europa/feature/DQA-0
Browse files Browse the repository at this point in the history
DQA: Fix string arguments on scheduler message.
  • Loading branch information
julien- authored Jul 12, 2022
2 parents 5a3b181 + 68aa256 commit 1e97fde
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function _nexteuropa_scheduler_message_replace(Datetime $time_to_publish = NULL)
'!date_1' => format_date($seconds_to_publish, 'custom', 'H:i:s T', NULL, $language_url->language),
'!date_2' => format_date($seconds_to_publish, 'custom', 'd F Y', NULL, $language_url->language),
);
$args['%date_to_publish'] = t('%date_1 on %date_2', $args_publish, $options);
$args['%date_to_publish'] = t('!date_1 on !date_2', $args_publish, $options);

}
if (!isset($conf['nexteuropa_scheduler_message_text'])) {
Expand Down

0 comments on commit 1e97fde

Please sign in to comment.