From faadda843ea43a3017e77b40a59456614c0a94a2 Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 9 Sep 2019 12:48:36 -0600 Subject: [PATCH] Update fax_to_email.php --- secure/fax_to_email.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/secure/fax_to_email.php b/secure/fax_to_email.php index 354dfe7935..568c7bcd92 100755 --- a/secure/fax_to_email.php +++ b/secure/fax_to_email.php @@ -405,10 +405,10 @@ if (!function_exists('fax_split_dtmf')) { $smtp['from'] = $_SESSION['email']['smtp_from']['text']; $smtp['from_name'] = $_SESSION['email']['smtp_from_name']['text']; - if (isset($_SESSION['fax']['smtp_from']) && strlen($_SESSION['fax']['smtp_from']['text']) > 0) { + if (isset($_SESSION['fax']['smtp_from']['text']) && strlen($_SESSION['fax']['smtp_from']['text']) > 0) { $smtp['from'] = $_SESSION['fax']['smtp_from']['text']; } - if (isset($_SESSION['fax']['smtp_from_name']) && strlen($_SESSION['fax']['smtp_from_name']['text']) > 0) { + if (isset($_SESSION['fax']['smtp_from_name']['text']) && strlen($_SESSION['fax']['smtp_from_name']['text']) > 0) { $smtp['from_name'] = $_SESSION['fax']['smtp_from_name']['text']; }