Merge pull request #13654 from nextcloud/backport/13650/stable14

[stable14] Fix colorizeSvg with transformations that contain a comma (,)
This commit is contained in:
Joas Schilling 2019-01-18 09:06:12 +01:00 committed by GitHub
commit 04bad1b3bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ class IconsCacher {
protected $timeFactory; protected $timeFactory;
/** @var string */ /** @var string */
private $iconVarRE = '/--(icon-[a-zA-Z0-9-]+):\s?url\(["\']([a-zA-Z0-9-_\~\/\.\?\=]+)[^;]+;/m'; private $iconVarRE = '/--(icon-[a-zA-Z0-9-]+):\s?url\(["\']?([a-zA-Z0-9-_\~\/\.\?\&\=\:\;\+\,]+)[^;]+;/m';
/** @var string */ /** @var string */
private $fileName = 'icons-vars.css'; private $fileName = 'icons-vars.css';