Update fax_send.php (#4443)

* Update fax_send.php

* Update fax_send.php
This commit is contained in:
chansizzle 2019-08-15 15:29:05 -06:00 committed by FusionPBX
parent c1e5630389
commit 9841ef55f0
1 changed files with 6 additions and 2 deletions

View File

@ -17,7 +17,7 @@
The Initial Developer of the Original Code is
Mark J Crane <markjcrane@fusionpbx.com>
Portions created by the Initial Developer are Copyright (C) 2008-2016
Portions created by the Initial Developer are Copyright (C) 2008-2019
the Initial Developer. All Rights Reserved.
Contributor(s):
@ -448,10 +448,14 @@ if (!function_exists('fax_split_dtmf')) {
//logo
$display_logo = false;
if (!isset($_SESSION['fax']['cover_logo']['text'])) {
if (!isset($_SESSION['fax']['cover_logo']['text']) && $_SESSION['fax']['cover_logo']['text'] == '') {
$logo = PROJECT_PATH."/app/fax/resources/images/logo.jpg";
$display_logo = true;
}
if (!isset($_SESSION['fax']['cover_logo']['text']) && $_SESSION['fax']['cover_logo']['text'] != '') {
$logo = '';
$display_logo = false;
}
else if (isset($_SESSION['fax']['cover_logo']['text']) && $_SESSION['fax']['cover_logo']['text'] != '') {
$logo = $_SESSION['fax']['cover_logo']['text'];
if (substr($logo, 0, 4) == 'http') {