Skip to content

Commit dde6f1d

Browse files
Bug Fix #8690: Inbound Call Report showing No Data in condition where supposedly has value + Adjusted for more precision on TIME column Data + Added AM/PM
1 parent 6a35f4b commit dde6f1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

goReports/goGetInboundReport.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117

118118
//$time = strtotime($row['call_date']);
119119
//$time = $row['end_epoch'] + $row['start_epoch'];
120-
$time = date("h:i:s", $date);
120+
$time = date("h:i:s A", $date);
121121
$TOPsorted_output .= '<td nowrap>'.$time.'</td>';
122122
$TOPsorted_output .= '<td nowrap style="padding-left:40px;">'.$row['length_in_sec'].'</td>';
123123
$TOPsorted_output .= '<td nowrap>'.$row['status'].'</td>';

0 commit comments

Comments
 (0)