mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 20:49:04 +01:00
quiten open_basedir warnings, when minify tries to access docroot
This commit is contained in:
parent
9ca2f15c2b
commit
59a327f5fb
@ -208,7 +208,7 @@ class Minify_CSS_UriRewriter {
|
|||||||
*/
|
*/
|
||||||
protected static function _realpath($path)
|
protected static function _realpath($path)
|
||||||
{
|
{
|
||||||
$realPath = realpath($path);
|
$realPath = @realpath($path);
|
||||||
if ($realPath !== false) {
|
if ($realPath !== false) {
|
||||||
$path = $realPath;
|
$path = $realPath;
|
||||||
}
|
}
|
||||||
|
@ -142,7 +142,7 @@ class Minify_Controller_MinApp extends Minify_Controller_Base {
|
|||||||
}
|
}
|
||||||
$base_path = $_SERVER['DOCUMENT_ROOT'].$base;
|
$base_path = $_SERVER['DOCUMENT_ROOT'].$base;
|
||||||
// check base against symlinks to support aliases configured via symlinks
|
// 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, '/')]) &&
|
isset($options['minifierOptions']['text/css']['symlinks'][$t='//'.trim($base, '/')]) &&
|
||||||
($base_path = realpath($options['minifierOptions']['text/css']['symlinks'][$t]))) {
|
($base_path = realpath($options['minifierOptions']['text/css']['symlinks'][$t]))) {
|
||||||
$base_path .= '/';
|
$base_path .= '/';
|
||||||
|
Loading…
Reference in New Issue
Block a user