mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-02 18:08:26 +01:00
Fix loading owning package
Summary: It is completely broken since D2943. Test Plan: PhabricatorOwnersPackage::loadAffectedPackages($repository, $path); Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D3067
This commit is contained in:
parent
59949bf811
commit
92a243492e
1 changed files with 2 additions and 2 deletions
|
@ -185,8 +185,8 @@ final class PhabricatorOwnersPackage extends PhabricatorOwnersDAO {
|
|||
}
|
||||
$ids = array_keys($ids);
|
||||
|
||||
$packages = $package->loadAllWhere('id in (%Ld)', array_keys($ids));
|
||||
$packages = array_select_keys($packages, array_keys($ids));
|
||||
$packages = $package->loadAllWhere('id in (%Ld)', $ids);
|
||||
$packages = array_select_keys($packages, $ids);
|
||||
|
||||
return $packages;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue