From 944216a37242a56408ace2ca910c056ee1a91c1c Mon Sep 17 00:00:00 2001 From: markjcrane Date: Thu, 6 Aug 2015 00:13:57 -0500 Subject: [PATCH] Change domain_name to domain_uuid. --- resources/classes/destinations.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/classes/destinations.php b/resources/classes/destinations.php index d5c19124a7..14d2843ebd 100644 --- a/resources/classes/destinations.php +++ b/resources/classes/destinations.php @@ -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();