Skip to content

Commit

Permalink
Update fax_files.php (#4759)
Browse files Browse the repository at this point in the history
remove escape to fix fax inbox date / time
  • Loading branch information
benwiesner1 authored and markjcrane committed Oct 8, 2019
1 parent 5209e99 commit 1d19ea3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/fax/fax_files.php
Expand Up @@ -369,7 +369,7 @@
echo " \n";
}
echo " </td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".date("F d Y H:i:s", strtotime(escape($row['fax_date'])))."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".date("F d Y H:i:s", strtotime($row['fax_date']))."&nbsp;</td>\n";
echo " <td style='width: 25px;' class='list_control_icons'>";
if (permission_exists('fax_file_delete')) {
echo "<a href='fax_file_delete.php?id=".escape($row['fax_file_uuid'])."' alt='".$text['button-delete']."' onclick=\"return confirm('".$text['confirm-delete']."')\">$v_link_label_delete</a>";
Expand Down

0 comments on commit 1d19ea3

Please sign in to comment.