mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 10:38:45 +02:00
Internal: Fix SASS to CSS convert for urls with query string (parameters after the "?")
This commit is contained in:
@@ -1478,7 +1478,7 @@ class utils
|
||||
static public function GetCSSFromSASS($sSassRelPath, $aImportPaths = null)
|
||||
{
|
||||
// Avoiding compilation if file is already a css file.
|
||||
if (preg_match('/\.css$/', $sSassRelPath))
|
||||
if (preg_match('/\.css(\?.*)?$/', $sSassRelPath))
|
||||
{
|
||||
return $sSassRelPath;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user