From 5d4a84d575b92fa6ccf20fb56fa123431996ed5d Mon Sep 17 00:00:00 2001 From: Sam Minnee Date: Mon, 15 Dec 2008 01:45:13 +0000 Subject: [PATCH] Bugfixes for recent staticpublisher imports git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@68912 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- core/Requirements.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/Requirements.php b/core/Requirements.php index b59eed99b..ece24e7a2 100644 --- a/core/Requirements.php +++ b/core/Requirements.php @@ -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 = ""; } }