1
0
Fork 0

Merge pull request #721 from Hounddog/issue_674

Wrong variable used for foreach. Fixes issue 674.
pull/723/head
Nils Adermann 2012-05-21 09:50:21 -07:00
commit 5567820beb
1 changed files with 1 additions and 1 deletions

View File

@ -731,7 +731,7 @@ class Solver
}
}
foreach ($this->decisionMap as $packageId => $decision) {
foreach ($allDecidedMap as $packageId => $decision) {
if ($packageId === 0) {
continue;
}