Correct a variable name from _id to _uuid.

This commit is contained in:
Mark Crane 2013-06-28 00:14:14 +00:00
parent 5b402817b9
commit 0e5e4fc6d4
1 changed files with 1 additions and 1 deletions

View File

@ -956,7 +956,7 @@ else {
//get the child schema_uuid and use it to show the list of data
$sql = "select * from v_schemas ";
$sql .= "where domain_uuid = '$domain_uuid' ";
$sql .= "and schema_parent_id = '$schema_uuid' ";
$sql .= "and schema_parent_uuid = '$schema_uuid' ";
$prep_statement = $db->prepare($sql);
$prep_statement->execute();
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);