mirror of
https://github.com/mrclay/minify.git
synced 2025-08-21 05:11:46 +02:00
Groups.php: + workaround for PATH_INFO on Apache w/ mod_fcgid
This commit is contained in:
@@ -46,13 +46,15 @@ class Minify_Controller_Groups extends Minify_Controller_Base {
|
|||||||
$groups = $options['groups'];
|
$groups = $options['groups'];
|
||||||
unset($options['groups']);
|
unset($options['groups']);
|
||||||
|
|
||||||
if (! isset($_SERVER['PATH_INFO'])) {
|
// mod_fcgid places PATH_INFO in ORIG_PATH_INFO
|
||||||
// no PATH_INFO
|
$pi = isset($_SERVER['ORIG_PATH_INFO'])
|
||||||
return $options;
|
? substr($_SERVER['ORIG_PATH_INFO'], 1)
|
||||||
}
|
: (isset($_SERVER['PATH_INFO'])
|
||||||
$pi = substr($_SERVER['PATH_INFO'], 1);
|
? substr($_SERVER['PATH_INFO'], 1)
|
||||||
if (! isset($groups[$pi])) {
|
: false
|
||||||
// not a valid group
|
);
|
||||||
|
if (false === $pi || ! isset($groups[$pi])) {
|
||||||
|
// no PATH_INFO or not a valid group
|
||||||
return $options;
|
return $options;
|
||||||
}
|
}
|
||||||
$sources = array();
|
$sources = array();
|
||||||
|
Reference in New Issue
Block a user