Update conference_profile_param_delete.php
Remove the domain filter from the delete.
This commit is contained in:
parent
f27912591e
commit
f8acbf56ad
|
|
@ -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);
|
||||
|
||||
?>
|
||||
?>
|
||||
|
|
|
|||
Loading…
Reference in New Issue