mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-06 11:43:50 +00:00
Call Recordings: Prefix length <= 59 with 0: for clarity.
This commit is contained in:
@@ -237,7 +237,7 @@
|
||||
//echo " <td valign='top' class='".$row_style[$c]."' style=\"\">\n";
|
||||
//echo " <a href=\"download.php?id=".escape($row['call_recording_uuid'])."&t=bin\">".$text['label-download']." ".$v_link_label_download."</a>\n";
|
||||
//echo " </td>\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['call_recording_length'])." </td>\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>".($row['call_recording_length'] <= 59 ? '0:' : null).escape($row['call_recording_length'])." </td>\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['call_recording_date'])." </td>\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['call_direction'])." </td>\n";
|
||||
echo " <td valign='top' class='row_stylebg'>".escape($row['call_recording_description'])." </td>\n";
|
||||
|
||||
Reference in New Issue
Block a user