From 708dea41d5a6dc3632ca434f9c61e4425b0b6b92 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Tue, 25 Feb 2014 06:00:40 +0000 Subject: [PATCH] Add domain_description to the same domains array. --- resources/pdo.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/pdo.php b/resources/pdo.php index 445884293d..6086091c8e 100644 --- a/resources/pdo.php +++ b/resources/pdo.php @@ -253,6 +253,7 @@ if ($db_type == "pgsql") { } $_SESSION['domains'][$row['domain_uuid']]['domain_uuid'] = $row['domain_uuid']; $_SESSION['domains'][$row['domain_uuid']]['domain_name'] = $row['domain_name']; + $_SESSION['domains'][$row['domain_uuid']]['domain_description'] = $row['domain_description']; } unset($result, $prep_statement); }