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:
+1
-1
@@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user