Index: branches/5.1.x/core/units/helpers/minifiers/minify_helper.php =================================================================== diff -u -N -r13560 -r13564 --- branches/5.1.x/core/units/helpers/minifiers/minify_helper.php (.../minify_helper.php) (revision 13560) +++ branches/5.1.x/core/units/helpers/minifiers/minify_helper.php (.../minify_helper.php) (revision 13564) @@ -1,6 +1,6 @@ _getTemplatePaths( array_map('trim', explode('|', $files)) ); $extension = pathinfo($files[0], PATHINFO_EXTENSION); - $hash = $this->_getHash($files); - $file_mask = 'cache/' . ($this->debugMode ? 'd' : 'c') . '_' . $hash . '_%s.' . $extension; + $hash = ($this->debugMode ? 'd' : 'c') . '_' . $this->_getHash($files); + $file_mask = 'cache/' . $hash . '_%s.' . $extension; $was_compressed = array_key_exists($hash, $this->compressInfo);