Minor change on the variable name.

This commit is contained in:
Mark Crane
2014-12-26 07:08:54 +00:00
parent 7d917f2547
commit 49ab58faa3
+3 -3
View File
@@ -40,9 +40,9 @@ require_once "resources/require.php";
$id = check_str($_GET["id"]); $id = check_str($_GET["id"]);
//delete the group //delete the group
$sqldelete = "delete from v_groups "; $sql = "delete from v_groups ";
$sqldelete .= "where group_uuid = '$id' "; $sql .= "where group_uuid = '$id' ";
if (!$db->exec($sqldelete)) { if (!$db->exec($sql)) {
//echo $db->errorCode() . "<br>"; //echo $db->errorCode() . "<br>";
$info = $db->errorInfo(); $info = $db->errorInfo();
print_r($info); print_r($info);