disable minify-ing of javascript, until I find time to fix it, as it stalls testers (css still get minifyed, if debug minify is off in site config)

This commit is contained in:
Ralf Becker 2013-07-24 07:42:27 +00:00
parent 29e2e36b7a
commit 8ec5425c5a

View File

@ -1231,7 +1231,8 @@ abstract class egw_framework
*/
static public function get_script_links($return_pathes=false, $clear_files=false)
{
$debug_minify = (bool)$GLOBALS['egw_info']['server']['debug_minify'];
// RB: disabled minifying (debug=true), 'til I found time to fix it
$debug_minify = true;//(bool)$GLOBALS['egw_info']['server']['debug_minify'];
$files = '';
$to_include = $to_minify = array();
$max_modified = 0;