Update conference_profile_param_delete.php

Remove the domain filter from the delete.
This commit is contained in:
FusionPBX 2016-07-16 17:24:59 -06:00 committed by GitHub
parent f27912591e
commit f8acbf56ad
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@
//delete conference_profile_param
$sql = "delete from v_conference_profile_params ";
$sql .= "where conference_profile_param_uuid = '$id' ";
$sql .= "and domain_uuid = '$domain_uuid' ";
//$sql .= "and domain_uuid = '$domain_uuid' ";
$prep_statement = $db->prepare(check_sql($sql));
$prep_statement->execute();
unset($sql);
@ -39,4 +39,4 @@
$_SESSION['message'] = $text['message-delete'];
header('Location: conference_profile_param_edit.php?id='.$conference_profile_uuid);
?>
?>