Skip to content

Commit 72ece76

Browse files
authored
Fixes syntax error in Groups controller
Fixes #613
1 parent bde7a41 commit 72ece76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Minify/Controller/Groups.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function createConfiguration(array $options)
4848
if (isset($server['ORIG_PATH_INFO'])) {
4949
$pathInfo = substr($server['ORIG_PATH_INFO'], 1);
5050
} elseif (isset($server['PATH_INFO'])) {
51-
$pathInfo = substr($server['PATH_INFO'], 1)
51+
$pathInfo = substr($server['PATH_INFO'], 1);
5252
} else {
5353
$pathInfo = false;
5454
}

0 commit comments

Comments
 (0)