Bugfixes for recent staticpublisher imports

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@68912 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sam Minnee 2008-12-15 01:45:13 +00:00
parent a8dca3908e
commit 5d4a84d575

View File

@ -479,14 +479,14 @@ class Requirements_Backend {
$this->disabled['css'] = $this->css;
$this->disabled['customScript'] = $this->customScript;
$this->disabled['customCSS'] = $this->customCSS;
Requirements::$disabled['customHeadTags'] = Requirements::$customHeadTags;
$this->disabled['customHeadTags'] = $this->customHeadTags;
$this->javascript = array();
$this->css = array();
$this->customScript = array();
$this->customCSS = array();
$this->customHeadTags = array();
Requirements::$customHeadTags = "";
$this->customHeadTags = "";
}
}