MDL-80357 theme_boost: Correctly interpolate SCSS

Fixes interpolation between SCSS setting and background images SCSS when SCSS setting is a single line comment
This commit is contained in:
Simon Adams 2023-12-19 15:13:54 +00:00
parent 513f3b02c7
commit 8c76c55e67

View File

@ -64,7 +64,7 @@ function theme_boost_get_extra_scss($theme) {
}
// Always return the background image with the scss when we have it.
return !empty($theme->settings->scss) ? $theme->settings->scss . ' ' . $content : $content;
return !empty($theme->settings->scss) ? "{$theme->settings->scss} \n {$content}" : $content;
}
/**