Use date format view helper function in the event grid

I'm about to drop the DateFormat view helper class.

refs #6778
This commit is contained in:
Eric Lippmann 2015-05-19 10:11:12 +02:00
parent d53c3d7075
commit 8f40d76cca
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ foreach ($summary as $entry) {
$caption = sprintf(
$settings[$column]['tooltip'],
$value,
$this->dateFormat()->formatDate(strtotime($day))
$this->formatDate(strtotime($day))
);
$linkFilter = Filter::matchAll(
Filter::expression('timestamp', '<', strtotime($day . ' 23:59:59')),