From: Brion Vibber Date: Mon, 28 Jul 2008 19:22:23 +0000 (+0000) Subject: Fix r38146 -- this is why redundant style declarations are bad. When one is removed... X-Git-Tag: 1.31.0-rc.0~46321 X-Git-Url: https://git.cyclocoop.org/%27%20.%20%24this-%3EgetSkin%28%29-%3EescapeSearchLink%28%29%20.%20%27?a=commitdiff_plain;h=7dfa83d291d27697560686f4788233299f5939ca;p=lhc%2Fweb%2Fwiklou.git Fix r38146 -- this is why redundant style declarations are bad. When one is removed, you discover they didn't match! :) --- diff --git a/skins/Modern.php b/skins/Modern.php index bdbfb7f882..e09db65142 100644 --- a/skins/Modern.php +++ b/skins/Modern.php @@ -32,6 +32,7 @@ class SkinModern extends SkinTemplate { $this->template = 'ModernTemplate'; $this->addStyle( 'common/shared.css', 'screen' ); + $this->addStyle( 'modern/main.css', 'screen' ); $this->addStyle( 'modern/print.css', 'print' ); } }