From aa51b7018850f426d9f1edb8e84c21be6e20144e Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Thu, 26 Nov 2009 19:16:02 +0000 Subject: [PATCH] MINOR Fixed capitalization of JSMin.php include (from r92870) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@93623 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 cdf612650..c7f12ec78 100644 --- a/core/Requirements.php +++ b/core/Requirements.php @@ -881,7 +881,7 @@ class Requirements_Backend { // if we have a javascript file and jsmin is enabled, minify the content $isJS = stripos($file, '.js'); if($isJS && $this->combine_js_with_jsmin) { - require_once('thirdparty/jsmin/JSMin.php'); + require_once('thirdparty/jsmin/jsmin.php'); increase_time_limit_to(); $fileContent = JSMin::minify($fileContent);