Index: branches/5.3.x/core/units/helpers/minifiers/minify_helper.php =================================================================== diff -u -N -r16519 -r16600 --- branches/5.3.x/core/units/helpers/minifiers/minify_helper.php (.../minify_helper.php) (revision 16519) +++ branches/5.3.x/core/units/helpers/minifiers/minify_helper.php (.../minify_helper.php) (revision 16600) @@ -1,6 +1,6 @@ Application->recallObject('CurlHelper'); + $curl_helper->setOptions(array( + CURLOPT_COOKIE => 'debug_off=1', + )); + $curl_helper->Send($this->Application->BaseURL()); + } + + /** * Compress $string based on $extension * * @param string $string @@ -231,7 +246,7 @@ $tmp_file = tempnam('/tmp', 'to_compress_'); file_put_contents($tmp_file, $string); - $command = 'java -jar ' . dirname(__FILE__) . DIRECTORY_SEPARATOR . 'yuicompressor-2.4.2.jar --type ' . $extension . ' --charset utf-8 ' . $tmp_file; + $command = 'java -jar ' . dirname(__FILE__) . DIRECTORY_SEPARATOR . 'yuicompressor-2.4.8.jar --type ' . $extension . ' --charset utf-8 ' . $tmp_file; $string = shell_exec($command); unlink($tmp_file);