From f4cdf58e6526deea9437f60fd2805cc42bc222ba Mon Sep 17 00:00:00 2001 From: Nate Date: Tue, 19 Feb 2019 13:12:41 -0700 Subject: [PATCH] Update database.php Fixed so $_SESSION['user']['contact_uuid'] would be populated as intended. --- core/authentication/resources/classes/plugins/database.php | 1 + 1 file changed, 1 insertion(+) diff --git a/core/authentication/resources/classes/plugins/database.php b/core/authentication/resources/classes/plugins/database.php index fe3297d88f..262d1fa151 100644 --- a/core/authentication/resources/classes/plugins/database.php +++ b/core/authentication/resources/classes/plugins/database.php @@ -119,6 +119,7 @@ class plugin_database { } $result["user_uuid"] = $this->user_uuid; $result["domain_uuid"] = $this->domain_uuid; + $result["contact_uuid"] = $this->contact_uuid; $result["sql"] = $sql; if ($user_authorized) { $result["authorized"] = "true";