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
This commit is contained in:
Ingo Schommer 2009-11-26 19:16:02 +00:00 committed by Sam Minnee
parent 311da2d8be
commit aa51b70188

View File

@ -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);