From 50b66f8bea0d97afeef05aaba14904c46fb77af9 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sun, 18 Sep 2022 03:08:18 -0600 Subject: [PATCH] If the domain_uuid is null the data is global. This error broken dialplan edit when saving a global dialplan. --- resources/classes/database.php | 1 - 1 file changed, 1 deletion(-) diff --git a/resources/classes/database.php b/resources/classes/database.php index 53d3ee77b3..810a09f942 100644 --- a/resources/classes/database.php +++ b/resources/classes/database.php @@ -307,7 +307,6 @@ include "root.php"; case 'app_uuid': case 'domain_uuid': if (is_uuid($value)) { $this->domain_uuid = $value; } - else { trigger_error('Domain or App UUID not valid', E_USER_ERROR); } break; case 'type': case 'driver':