summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2011-10-04 23:28:32 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2011-10-04 23:28:32 -0400
commit9e4c1efb467014ce69886a31168b4adb3c8a8850 (patch)
tree772e682b9986817847a63859e615b572cd7fa908 /src
parent9018599b1a62b898990e3f056eb1179561c366fe (diff)
Add some (S)CSS for printing.
Diffstat (limited to 'src')
-rw-r--r--src/views/Template.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/views/Template.class.php b/src/views/Template.class.php
index 663ec05..bf57e93 100644
--- a/src/views/Template.class.php
+++ b/src/views/Template.class.php
@@ -138,7 +138,7 @@ class Template {
$str.= $this->tag('title', array(), htmlspecialchars($title));
$str.= $this->css('style.css', 'all');
$str.= $this->css('screen.css', 'screen');
- $str.= $this->css('logo-style.css', 'screen');
+ $str.= $this->css('print.css', 'print');
$str.= $this->closeTag('head');
$body_class = 'logged'.($logged_in?'in':'out');