Removed Requirements call from controller; these should be put in the template now.

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/trunk@65501 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
sminnee 2008-11-10 00:53:41 +00:00
parent 78fa0fc32a
commit e655425d2c
1 changed files with 9 additions and 11 deletions

View File

@ -1,20 +1,18 @@
<?php
class Page extends SiteTree {
static $db = array(
public static $db = array(
);
static $has_one = array(
);
public static $has_one = array(
);
}
class Page_Controller extends ContentController {
function init() {
public function init() {
parent::init();
Requirements::themedCSS("layout");
Requirements::themedCSS("typography");
Requirements::themedCSS("form");
}
}
?>