From bff49f6fc4fd83bdfd363d60d941700211d84845 Mon Sep 17 00:00:00 2001 From: Will Rossiter Date: Sun, 6 Dec 2009 05:21:21 +0000 Subject: [PATCH] BUGFIX: include customHeadScripts in clear rule. git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@94437 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- core/Requirements.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Requirements.php b/core/Requirements.php index c7f12ec78..f7da67848 100644 --- a/core/Requirements.php +++ b/core/Requirements.php @@ -511,7 +511,7 @@ class Requirements_Backend { */ function clear($fileOrID = null) { if($fileOrID) { - foreach(array('javascript','css', 'customScript', 'customCSS') as $type) { + foreach(array('javascript','css', 'customScript', 'customCSS', 'customHeadTags') as $type) { if(isset($this->{$type}[$fileOrID])) { $this->disabled[$type][$fileOrID] = $this->{$type}[$fileOrID]; unset($this->{$type}[$fileOrID]);