Add domain_description to the same domains array when changing tenants.

This commit is contained in:
Mark Crane 2014-02-25 06:01:42 +00:00
parent fe5c6fe492
commit ab5103042c
1 changed files with 1 additions and 0 deletions

View File

@ -61,6 +61,7 @@ else {
} }
$_SESSION['domains'][$row['domain_uuid']]['domain_uuid'] = $row['domain_uuid']; $_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_name'] = $row['domain_name'];
$_SESSION['domains'][$row['domain_uuid']]['domain_description'] = $row['domain_description'];
} }
} }
unset($result, $prep_statement); unset($result, $prep_statement);