forked from extern/egroupware
quiten open_basedir warnings, when minify tries to access docroot
This commit is contained in:
parent
95e1fb860a
commit
9f07b91490
@ -208,7 +208,7 @@ class Minify_CSS_UriRewriter {
|
||||
*/
|
||||
protected static function _realpath($path)
|
||||
{
|
||||
$realPath = realpath($path);
|
||||
$realPath = @realpath($path);
|
||||
if ($realPath !== false) {
|
||||
$path = $realPath;
|
||||
}
|
||||
|
@ -142,7 +142,7 @@ class Minify_Controller_MinApp extends Minify_Controller_Base {
|
||||
}
|
||||
$base_path = $_SERVER['DOCUMENT_ROOT'].$base;
|
||||
// check base against symlinks to support aliases configured via symlinks
|
||||
if (!(file_exists($base_path) && is_dir($base_path) && realpath($base_path) !== false) &&
|
||||
if (!(file_exists($base_path) && is_dir($base_path) && @realpath($base_path) !== false) &&
|
||||
isset($options['minifierOptions']['text/css']['symlinks'][$t='//'.trim($base, '/')]) &&
|
||||
($base_path = realpath($options['minifierOptions']['text/css']['symlinks'][$t]))) {
|
||||
$base_path .= '/';
|
||||
|
Loading…
Reference in New Issue
Block a user