From 8ec5425c5aaf63168e7460844439f1a81b3ca688 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 24 Jul 2013 07:42:27 +0000 Subject: [PATCH] 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) --- phpgwapi/inc/class.egw_framework.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.egw_framework.inc.php b/phpgwapi/inc/class.egw_framework.inc.php index 0a6c6262cf..7f38dd4c10 100644 --- a/phpgwapi/inc/class.egw_framework.inc.php +++ b/phpgwapi/inc/class.egw_framework.inc.php @@ -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;