MINOR Fixed undefined variable $groupList

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/branches/2.4@113967 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
sharvey 2010-11-20 05:29:59 +00:00 committed by Sam Minnee
parent 8c315023b2
commit 6c3e5ca132

View File

@ -603,6 +603,7 @@ class InstallRequirements {
} else {
$groups = posix_getgroups();
$groupList = array();
foreach($groups as $group) {
$groupInfo = posix_getgrgid($group);
if(in_array($currentOwner['name'], $groupInfo['members'])) $groupList[] = $groupInfo['name'];