diff --git a/system/src/Grav/Common/Page/Page.php b/system/src/Grav/Common/Page/Page.php index 7bf4d059d..fef38638a 100644 --- a/system/src/Grav/Common/Page/Page.php +++ b/system/src/Grav/Common/Page/Page.php @@ -652,7 +652,7 @@ class Page implements PageInterface return $content; } - return mb_strimwidth($content, 0, $size, '...', 'UTF-8'); + return mb_strimwidth($content, 0, $size, '…', 'UTF-8'); } $summary = Utils::truncateHtml($content, $size); diff --git a/system/src/Grav/Common/Scheduler/Cron.php b/system/src/Grav/Common/Scheduler/Cron.php index b9abff08a..4ba2c5cc6 100644 --- a/system/src/Grav/Common/Scheduler/Cron.php +++ b/system/src/Grav/Common/Scheduler/Cron.php @@ -69,7 +69,7 @@ class Cron 'name_year' => 'année', 'text_period' => 'Chaque %s', 'text_mins' => 'à %s minutes', - 'text_time' => 'à %s:%s', + 'text_time' => 'à %02s:%02s', 'text_dow' => 'le %s', 'text_month' => 'de %s', 'text_dom' => 'le %s', @@ -86,7 +86,7 @@ class Cron 'name_year' => 'year', 'text_period' => 'Every %s', 'text_mins' => 'at %s minutes past the hour', - 'text_time' => 'at %s:%s', + 'text_time' => 'at %02s:%02s', 'text_dow' => 'on %s', 'text_month' => 'of %s', 'text_dom' => 'on the %s',