Replace the commas for display with a space.

Browser will handle different display sizes better with a space.
This commit is contained in:
FusionPBX 2022-11-15 11:01:26 -07:00 committed by GitHub
parent 2d3b41a3ee
commit 135686c252
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@
echo " <td>".escape($row['fax_caller_id_name'])."</td>\n";
echo " <td>".escape($row['fax_caller_id_number'])."</td>\n";
echo " <td>".escape($row['fax_number'])."</td>\n";
echo " <td>".escape($row['fax_email_address'])."</td>\n";
echo " <td>".escape(str_replace(',', ' ', $row['fax_email_address']))."</td>\n";
echo " <td>".escape($row['fax_file'])."</td>\n";
echo " <td>".escape($row['fax_status'])."</td>\n";
echo " <td>".escape($row['fax_retry_date_formatted'])." ".escape($row['fax_retry_time_formatted'])."</td>\n";