Update conference_profile_param_delete.php

Add spaces.
This commit is contained in:
FusionPBX
2016-07-17 14:20:18 -06:00
committed by GitHub
parent 1b80f888b3
commit ea18c47c2b
@@ -19,13 +19,13 @@
$text = $language->get(); $text = $language->get();
//get the id //get the id
if (count($_GET)>0) { if (count($_GET) > 0) {
$id = check_str($_GET["id"]); $id = check_str($_GET["id"]);
$conference_profile_uuid = check_str($_GET["conference_profile_uuid"]); $conference_profile_uuid = check_str($_GET["conference_profile_uuid"]);
} }
//delete the data //delete the data
if (strlen($id)>0) { if (strlen($id) > 0) {
//delete conference_profile_param //delete conference_profile_param
$sql = "delete from v_conference_profile_params "; $sql = "delete from v_conference_profile_params ";
$sql .= "where conference_profile_param_uuid = '$id' "; $sql .= "where conference_profile_param_uuid = '$id' ";