1
0
mirror of https://github.com/mrclay/minify.git synced 2025-08-05 13:47:38 +02:00

Fixes syntax error in Groups controller

Fixes #613
This commit is contained in:
Steve Clay
2017-09-14 18:03:49 -04:00
committed by GitHub
parent bde7a41021
commit 72ece76cdf

View File

@@ -48,7 +48,7 @@ class Minify_Controller_Groups extends Minify_Controller_Files
if (isset($server['ORIG_PATH_INFO'])) {
$pathInfo = substr($server['ORIG_PATH_INFO'], 1);
} elseif (isset($server['PATH_INFO'])) {
$pathInfo = substr($server['PATH_INFO'], 1)
$pathInfo = substr($server['PATH_INFO'], 1);
} else {
$pathInfo = false;
}