mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:17 +01:00
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);
|
unset($query);
|
||||||
list($path,$query) = explode('?',$path,2);
|
list($path,$query) = explode('?',$path,2);
|
||||||
$mod = filemtime(EGW_SERVER_ROOT.$path);
|
$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!
|
// ckeditor must be included before bundled files, as they depend on it!
|
||||||
if (strpos($path,'/ckeditor/ckeditor.js') !== false)
|
if (strpos($path,'/ckeditor/ckeditor.js') !== false)
|
||||||
@ -157,7 +158,6 @@ class Bundle
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if ($mod > $max_modified) $max_modified = $mod;
|
|
||||||
$to_minify[] = substr($path,1);
|
$to_minify[] = substr($path,1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user