소스 검색

Change domain_name to domain_uuid.

markjcrane 10 년 전
부모
커밋
d5b41261c3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      resources/classes/destinations.php

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