From 203edb713b10a2ada11c357216294453b5d85c1e Mon Sep 17 00:00:00 2001 From: Andrew O'Neil Date: Thu, 12 Feb 2009 04:17:57 +0000 Subject: [PATCH] BUGFIX: Fix wrong conditional git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.3@71764 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 73c09fa16..b3a0a459a 100644 --- a/core/Requirements.php +++ b/core/Requirements.php @@ -793,7 +793,7 @@ class Requirements_Backend { */ function process_combined_files() { - if(Director::isDev() && !SapphireTest::is_running_test() && Requirements::get_combined_files_enabled()) { + if((Director::isDev() && !SapphireTest::is_running_test()) || !Requirements::get_combined_files_enabled()) { return; }