diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-03-26 07:40:41 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-03-26 07:40:41 +0000 |
| commit | a4d27f5c0d92d9e3c592ef2d2a908e23b4873e09 (patch) | |
| tree | 6e66c250902a8957a486f3f7d333669f53db9d53 /lib/plugins | |
| parent | 80d1a116dad1c1b3dc271412321d48c7fef9945f (diff) | |
remove redundant and unnecessary quotes from scss variables, fixes #5408
Closes #5408
Merge request studip/studip!4064
Diffstat (limited to 'lib/plugins')
| -rw-r--r-- | lib/plugins/core/PluginAssetsTrait.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/core/PluginAssetsTrait.php b/lib/plugins/core/PluginAssetsTrait.php index ed1974e..7952016 100644 --- a/lib/plugins/core/PluginAssetsTrait.php +++ b/lib/plugins/core/PluginAssetsTrait.php @@ -252,7 +252,7 @@ trait PluginAssetsTrait $extension = pathinfo($filename, PATHINFO_EXTENSION); if ($extension === 'scss') { $contents = Assets\SASSCompiler::getInstance()->compile($contents, $variables + [ - 'plugin-path' => '"' . $this->getPluginURL() . '"', + 'plugin-path' => $this->getPluginURL(), ]); } return $contents; |
