From 0d5f7d219731a6f6b41bc7fbae9e8abf83dab54e Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Thu, 13 Nov 2008 01:39:30 +0000 Subject: [PATCH] BUGFIX Missing variable in some circumstances caused Requirements::include_in_response() to break git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@65763 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- core/Requirements.php | 1 + 1 file changed, 1 insertion(+) diff --git a/core/Requirements.php b/core/Requirements.php index 8db113e94..d7e4f2652 100644 --- a/core/Requirements.php +++ b/core/Requirements.php @@ -584,6 +584,7 @@ class Requirements_Backend { function include_in_response(HTTPResponse $response) { $this->process_combined_files(); $jsRequirements = array(); + $cssRequirements = array(); foreach(array_diff_key($this->javascript, $this->blocked) as $file => $dummy) { $path = $this->path_for_file($file);