From a7d1991f70224b2de7a6d52a0d9daaac972c4cc1 Mon Sep 17 00:00:00 2001 From: mullerivan Date: Mon, 3 Mar 2014 02:40:33 -0200 Subject: [PATCH] Update css.md --- docs/en/topics/css.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/topics/css.md b/docs/en/topics/css.md index e6043f46d..77db60f0f 100644 --- a/docs/en/topics/css.md +++ b/docs/en/topics/css.md @@ -21,7 +21,7 @@ In your controller (e.g. `mysite/code/Page.php`): // either specify the css file manually Requirements::css("mymodule/css/my.css", "screen,projection"); // or mention the css filename and SilverStripe will get the file from the current theme and add it to the template - Requirements::themedCSS('print', 'print'); + Requirements::themedCSS('print', null,'print'); } }