use colon instead of dot for hour/minute separation

This commit is contained in:
2020-05-01 15:18:54 +02:00
parent d75b790ccf
commit 6700d76528
2 changed files with 4 additions and 4 deletions

View File

@ -99,7 +99,7 @@ class Widget extends WP_Widget {
$wp_query->the_post();
// @codingStandardsIgnoreLine
echo SCLiveticker::tick_html_widget(
esc_html( get_the_time( 'd.m.Y - H.i' ) ),
esc_html( get_the_time( 'd.m.Y - H:i' ) ),
get_the_title(),
( '1' === $highlight && get_the_time( 'U' ) > ( time() - $highlight_time ) )
);