Skip to content

Commit

Permalink
Fax - Sent: Add time sent to cover sheet.
Browse files Browse the repository at this point in the history
  • Loading branch information
fusionate committed Oct 2, 2024
1 parent bb2232e commit 0d8d2aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/fax/fax_send.php
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ function fax_split_dtmf(&$fax_number, &$fax_dtmf){
if ($_REQUEST['submit'] != '' && $_REQUEST['submit'] != 'preview') {
$time_zone = isset($_SESSION['domain']['time_zone']['name']) ? $_SESSION['domain']['time_zone']['name'] : date_default_timezone_get();
$date = new DateTime('now', new DateTimeZone($time_zone) );
$pdf->Write(0.3, $date->format('d M Y'));
$pdf->Write(0.3, $date->format('d M Y @ h:i:s A'));
}
$pdf->SetXY($x + 2.0, $y + 1.95);
if ($fax_recipient != '') {
Expand Down

0 comments on commit 0d8d2aa

Please sign in to comment.