Update switch_music_on_hold.php

This commit is contained in:
FusionPBX 2019-08-29 23:47:17 -06:00 committed by GitHub
parent 94fc0d1d2a
commit e37e8b8a20
1 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@
The Initial Developer of the Original Code is The Initial Developer of the Original Code is
Mark J Crane <markjcrane@fusionpbx.com> Mark J Crane <markjcrane@fusionpbx.com>
Portions created by the Initial Developer are Copyright (C) 2010-2016 Portions created by the Initial Developer are Copyright (C) 2010-2019
All Rights Reserved. All Rights Reserved.
Contributor(s): Contributor(s):
@ -89,7 +89,7 @@ include "root.php";
$sql .= "where (domain_uuid = :domain_uuid or domain_uuid is null) "; $sql .= "where (domain_uuid = :domain_uuid or domain_uuid is null) ";
$sql .= "and stream_enabled = 'true' "; $sql .= "and stream_enabled = 'true' ";
$sql .= "order by stream_name asc "; $sql .= "order by stream_name asc ";
$parameters['domain_uuid'] = $_SESSION['domain_uuid'] $parameters['domain_uuid'] = $_SESSION['domain_uuid'];
$database = new database; $database = new database;
$streams = $database->select($sql, $parameters, 'all'); $streams = $database->select($sql, $parameters, 'all');
if (is_array($streams) && @sizeof($streams) != 0) { if (is_array($streams) && @sizeof($streams) != 0) {
@ -125,7 +125,7 @@ include "root.php";
$sql .= "left join v_domains as d on d.domain_uuid = m.domain_uuid "; $sql .= "left join v_domains as d on d.domain_uuid = m.domain_uuid ";
$sql .= "where (m.domain_uuid = :domain_uuid or m.domain_uuid is null) "; $sql .= "where (m.domain_uuid = :domain_uuid or m.domain_uuid is null) ";
$sql .= "order by m.domain_uuid desc, music_on_hold_name asc, music_on_hold_rate asc "; $sql .= "order by m.domain_uuid desc, music_on_hold_name asc, music_on_hold_rate asc ";
$parameters['domain_uuid'] = $_SESSION['domain_uuid'] $parameters['domain_uuid'] = $_SESSION['domain_uuid'];
$database = new database; $database = new database;
return $database->select($sql, $parameters, 'all'); return $database->select($sql, $parameters, 'all');
unset($sql, $parameters); unset($sql, $parameters);
@ -222,4 +222,4 @@ include "root.php";
//$moh->xml(); //$moh->xml();
//$moh->save(); //$moh->save();
?> ?>