mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-25 10:09:21 +00:00
Minor change on the variable name.
This commit is contained in:
@@ -40,9 +40,9 @@ require_once "resources/require.php";
|
||||
$id = check_str($_GET["id"]);
|
||||
|
||||
//delete the group
|
||||
$sqldelete = "delete from v_groups ";
|
||||
$sqldelete .= "where group_uuid = '$id' ";
|
||||
if (!$db->exec($sqldelete)) {
|
||||
$sql = "delete from v_groups ";
|
||||
$sql .= "where group_uuid = '$id' ";
|
||||
if (!$db->exec($sql)) {
|
||||
//echo $db->errorCode() . "<br>";
|
||||
$info = $db->errorInfo();
|
||||
print_r($info);
|
||||
|
||||
Reference in New Issue
Block a user