monitoring: Fix date and time formatting in the timeline

refs #6778
This commit is contained in:
Eric Lippmann 2015-05-22 10:59:17 +02:00
parent 3fced8472b
commit 8d6d52f9db
1 changed files with 2 additions and 4 deletions

View File

@ -268,8 +268,7 @@ class Monitoring_TimelineController extends Controller
*/
private function getTimeFormat()
{
// TODO(mh): Missing localized format (#6077)
return 'g:i A';
return 'H:i';
}
/**
@ -279,7 +278,6 @@ class Monitoring_TimelineController extends Controller
*/
private function getDateFormat()
{
// TODO(mh): Missing localized format (#6077)
return 'd/m/Y';
return 'Y-m-d';
}
}