mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR Fixed capitalization of JSMin.php include
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@92870 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
d92bbbecfb
commit
af41180177
@ -881,7 +881,7 @@ class Requirements_Backend {
|
|||||||
// if we have a javascript file and jsmin is enabled, minify the content
|
// if we have a javascript file and jsmin is enabled, minify the content
|
||||||
$isJS = stripos($file, '.js');
|
$isJS = stripos($file, '.js');
|
||||||
if($isJS && $this->combine_js_with_jsmin) {
|
if($isJS && $this->combine_js_with_jsmin) {
|
||||||
require_once('thirdparty/jsmin/JSMin.php');
|
require_once('thirdparty/jsmin/jsmin.php');
|
||||||
|
|
||||||
increase_time_limit_to();
|
increase_time_limit_to();
|
||||||
$fileContent = JSMin::minify($fileContent);
|
$fileContent = JSMin::minify($fileContent);
|
||||||
|
Loading…
Reference in New Issue
Block a user