mirror of
https://github.com/nextcloud/server.git
synced 2026-05-25 18:52:53 -04:00
Merge pull request #13653 from nextcloud/backport/13650/stable15
[stable15] Fix colorizeSvg with transformations that contain a comma (,)
This commit is contained in:
commit
2c46aab893
1 changed files with 1 additions and 1 deletions
|
|
@ -180,7 +180,7 @@ class IconsCacher {
|
|||
*/
|
||||
public function colorizeSvg($svg, $color): string {
|
||||
// add fill (fill is not present on black elements)
|
||||
$fillRe = '/<((circle|rect|path)((?!fill)[a-z0-9 =".\-#():;])+)\/>/mi';
|
||||
$fillRe = '/<((circle|rect|path)((?!fill)[a-z0-9 =".\-#():;,])+)\/>/mi';
|
||||
$svg = preg_replace($fillRe, '<$1 fill="#' . $color . '"/>', $svg);
|
||||
|
||||
// replace any fill or stroke colors
|
||||
|
|
|
|||
Loading…
Reference in a new issue