DateTime Format in Call History
I would like to ask how can i change the actual date&time format of the event in my timezone (not “13 minutes ago”) in Call History. Now i see only "minutes", "hours", "days" "ago".
I want to see Date and Time formated as: YYYY-MM-DD HH:MM:SS.
I know it is possible because i saw that format. But how to change it?
Comments
Edit /var/www/html/fop2/calldetailrecords.php
You need to modify the "dateFilter" function from...
function dateFilter($date,$datos) {
$date = str_replace(" ","T",$date);
$date .= 'Z';
return "";
}
to...
function dateFilter($date,$datos) {
$date = str_replace(" ","T",$date);
$date .= 'Z';
$date2 = new DateTime($date);
return "";
}