diff --git a/module/VuFindTheme/src/VuFindTheme/View/Helper/HeadLink.php b/module/VuFindTheme/src/VuFindTheme/View/Helper/HeadLink.php index 60168d4d6dc776d963badfb2b74f3239e871f06c..e11cfa4d0f0a8a32bf9f95583c4b4c5015a4d3f7 100644 --- a/module/VuFindTheme/src/VuFindTheme/View/Helper/HeadLink.php +++ b/module/VuFindTheme/src/VuFindTheme/View/Helper/HeadLink.php @@ -193,7 +193,11 @@ class HeadLink extends \Zend\View\Helper\HeadLink */ public function getType($item) { - return isset($item->media) ? $item->media : 'all'; + $type = $item->media ?? 'all'; + if (isset($item->conditionalStylesheet)) { + $type .= '_' . $item->conditionalStylesheet; + } + return $type; } /**