Browse Source

Fix color_adjust rgb error

FusionPBX 1 year ago
parent
commit
08d8cca291
1 changed files with 1 additions and 0 deletions
  1. 1 0
      resources/functions.php

+ 1 - 0
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;
 				}