From 0c45ed8b959bbd02e37b8bcb858f8b91388ea55d Mon Sep 17 00:00:00 2001 From: rgmears Date: Tue, 17 Jun 2014 16:15:20 -0500 Subject: [PATCH] Update logic.php Remove 'screen' attribute on template.css from line 414. Allows for @media print inside template.css to work. --- elements/logic.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elements/logic.php b/elements/logic.php index 4ac7465..a8e932f 100644 --- a/elements/logic.php +++ b/elements/logic.php @@ -411,7 +411,7 @@ function getAncestorCategories($id) { $doc->addStyleSheet($template . '/css/grids/' . $gridSystem . '?' . $version, 'text/css', 'screen'); } if ($customStyleSheet > -1) { - $doc->addStyleSheet($template . '/css/' . $customStyleSheet . '?' . $customStyleSheetVersion, 'text/css', 'screen'); + $doc->addStyleSheet($template . '/css/' . $customStyleSheet . '?' . $customStyleSheetVersion, 'text/css'); } if ($this->direction == 'rtl') { $doc->addStyleSheet($template . '/css/rtl.css?' . $version, 'text/css', 'screen');