From 40998fdac132e4eeaa6006d199f200dd3caaa12e Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Tue, 12 Dec 2023 16:44:52 -0700 Subject: [PATCH] Fix color_adjust rgb error --- resources/functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/functions.php b/resources/functions.php index 3994c6a713..10599b7d50 100644 --- a/resources/functions.php +++ b/resources/functions.php @@ -1231,6 +1231,7 @@ if (substr_count($color, 'rgb') != 0) { $color = str_replace('rgb', '', $color); $color = str_replace('a(', '', $color); + $color = str_replace('(', '', $color); $color = str_replace(')', '', $color); $wrapper = true; }