Change domain_name to domain_uuid.

This commit is contained in:
markjcrane
2015-08-06 00:13:57 -05:00
parent 752c54d05c
commit 944216a372

View File

@@ -83,7 +83,7 @@ class destinations {
if (isset($row['sql'])) {
$sql .= "order by ".trim($row['order_by']);
}
$sql = str_replace("\${domain_name}", $_SESSION['domain_uuid'], $sql);
$sql = str_replace("\${domain_uuid}", $_SESSION['domain_uuid'], $sql);
$sql = trim($sql);
$statement = $db->prepare($sql);
$statement->execute();