From 5bc71e0847f08e6317496e32acb87a714e9157a5 Mon Sep 17 00:00:00 2001 From: Ruud Kamphuis Date: Wed, 27 Mar 2013 09:43:23 +0100 Subject: [PATCH] Removed date filter from failed_list.html.twig Otherwise you get this error: An exception has been thrown during the rendering of a template ("DateTime::__construct(): Failed to parse time string (di mrt 26 12:46:53 UTC 2013) at position 0 (d): The timezone could not be found in the database") in BCCResqueBundle:Default:failed_list.html.twig at line 21. --- Resources/views/Default/failed_list.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/views/Default/failed_list.html.twig b/Resources/views/Default/failed_list.html.twig index 2fa629e..b3222e9 100644 --- a/Resources/views/Default/failed_list.html.twig +++ b/Resources/views/Default/failed_list.html.twig @@ -18,7 +18,7 @@ {% for job in jobs %} {{ job.queueName }} - {{ job.failedAt|date('Y-m-d H:i:s') }} + {{ job.failedAt }} {{ job.name }} {{ job.exceptionClass }}