Change domain_name to domain_uuid.

This commit is contained in:
markjcrane 2015-08-06 00:13:57 -05:00
parent 15ca076e09
commit b04e958d5b
1 changed files with 1 additions and 1 deletions

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();