forked from extern/egroupware
fix infinit recursion, when creating new bundles, caused by max_modified not calculated
This commit is contained in:
parent
b06fc3f3e1
commit
70e084972a
@ -143,6 +143,7 @@ class Bundle
|
||||
unset($query);
|
||||
list($path,$query) = explode('?',$path,2);
|
||||
$mod = filemtime(EGW_SERVER_ROOT.$path);
|
||||
if ($mod > $max_modified) $max_modified = $mod;
|
||||
|
||||
// ckeditor must be included before bundled files, as they depend on it!
|
||||
if (strpos($path,'/ckeditor/ckeditor.js') !== false)
|
||||
@ -157,7 +158,6 @@ class Bundle
|
||||
}
|
||||
else
|
||||
{
|
||||
if ($mod > $max_modified) $max_modified = $mod;
|
||||
$to_minify[] = substr($path,1);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user