mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
remove create_function in favor of a global function as it is causing - at least on some systems - permanently changing cache-ids / minified sources not to be cached
This commit is contained in:
parent
dff636bde6
commit
f9fdf59746
@ -165,7 +165,11 @@ $min_symlinks['//'.ltrim($sitePrefix, '/')] = dirname(dirname(dirname(__DIR__)))
|
|||||||
* Remove all "use strict" as we have a mixure of strict and non-strict code (mostly externals libs)
|
* Remove all "use strict" as we have a mixure of strict and non-strict code (mostly externals libs)
|
||||||
* and javascript is supposed to run quicker without anyway.
|
* and javascript is supposed to run quicker without anyway.
|
||||||
*/
|
*/
|
||||||
$min_serveOptions['postprocessor'] = create_function('$in', 'return str_replace(array(\'"use strict";\', \'"use strict"\'), \'\', $in);');
|
function remove_use_strict($in)
|
||||||
|
{
|
||||||
|
return str_replace(array('"use strict";', '"use strict"'), '', $in);
|
||||||
|
}
|
||||||
|
$min_serveOptions['postprocessor'] = 'remove_use_strict';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If you upload files from Windows to a non-Windows server, Windows may report
|
* If you upload files from Windows to a non-Windows server, Windows may report
|
||||||
|
Loading…
Reference in New Issue
Block a user