Update fax_send.php (#4443)
* Update fax_send.php * Update fax_send.php
This commit is contained in:
parent
c1e5630389
commit
9841ef55f0
|
|
@ -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') {
|
||||
|
|
|
|||
Loading…
Reference in New Issue