Fix color_adjust rgb error

This commit is contained in:
FusionPBX 2023-12-12 16:44:52 -07:00 committed by GitHub
parent 16ee4900b0
commit 40998fdac1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -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;
}