Add a missing ) to fix the syntax.

This commit is contained in:
Mark Crane 2015-01-12 18:34:12 +00:00
parent 2fde3cb746
commit 6dfb2b0a7f
1 changed files with 1 additions and 1 deletions

View File

@ -418,7 +418,7 @@ else {
echo "<br />\n";
$sql = "SELECT * FROM v_groups ";
$sql .= "where (domain_uuid = '".$domain_uuid."' or domain_uuid is null ";
$sql .= "where (domain_uuid = '".$domain_uuid."' or domain_uuid is null) ";
$sql .= "order by group_name asc ";
$prep_statement = $db->prepare(check_sql($sql));
$prep_statement->execute();