Change prefix from start_ changed to fax_.

This commit is contained in:
FusionPBX 2022-04-24 02:00:16 -06:00 committed by GitHub
parent c735e7d439
commit f9e63c2a28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -135,8 +135,8 @@
$sql .= "q.fax_queue_uuid, ";
$sql .= "q.fax_uuid, ";
$sql .= "q.fax_date, ";
$sql .= "to_char(timezone(:time_zone, q.fax_date), 'DD Mon YYYY') as start_date_formatted, \n";
$sql .= "to_char(timezone(:time_zone, q.fax_date), 'HH12:MI:SS am') as start_time_formatted, \n";
$sql .= "to_char(timezone(:time_zone, q.fax_date), 'DD Mon YYYY') as fax_date_formatted, \n";
$sql .= "to_char(timezone(:time_zone, q.fax_date), 'HH12:MI:SS am') as fax_time_formatted, \n";
$sql .= "q.hostname, ";
$sql .= "q.fax_caller_id_name, ";
$sql .= "q.fax_caller_id_number, ";
@ -281,8 +281,8 @@
echo " <td>".escape($row['domain_name'])."</td>\n";
}
//echo " <td>".escape($row['fax_date'])."</td>\n";
echo " <td nowrap='nowrap'>".escape($row['start_date_formatted'])."</td>\n";
echo " <td nowrap='nowrap'>".escape($row['start_time_formatted'])."</td>\n";
echo " <td nowrap='nowrap'>".escape($row['fax_date_formatted'])."</td>\n";
echo " <td nowrap='nowrap'>".escape($row['fax_time_formatted'])."</td>\n";
echo " <td>".escape($row['hostname'])."</td>\n";
echo " <td>".escape($row['fax_caller_id_name'])."</td>\n";
echo " <td>".escape($row['fax_caller_id_number'])."</td>\n";