From 41df04ff2beba823f1947cbff1a31732916b9017 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Mon, 26 Mar 2012 15:13:56 +0200 Subject: [PATCH] MINOR Added reset.css include to Page.php in order to fix inclusion order in new default theme --- mysite/code/Page.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mysite/code/Page.php b/mysite/code/Page.php index 310620f..6ed23a2 100755 --- a/mysite/code/Page.php +++ b/mysite/code/Page.php @@ -34,8 +34,10 @@ class Page_Controller extends ContentController { // Note: you should use SS template require tags inside your templates // instead of putting Requirements calls here. However these are // included so that our older themes still work + Requirements::themedCSS('reset'); Requirements::themedCSS('layout'); Requirements::themedCSS('typography'); Requirements::themedCSS('form'); } + } \ No newline at end of file