From 0d8d2aacc76c8e30efcdd7141a8013cbfa17e43d Mon Sep 17 00:00:00 2001 From: fusionate Date: Wed, 2 Oct 2024 17:17:26 -0600 Subject: [PATCH] Fax - Sent: Add time sent to cover sheet. --- app/fax/fax_send.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/fax/fax_send.php b/app/fax/fax_send.php index ccb37864f5..32c8c02728 100644 --- a/app/fax/fax_send.php +++ b/app/fax/fax_send.php @@ -493,7 +493,7 @@ if (!function_exists('fax_split_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 != '') {