mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-09 16:32:39 +01:00
Fix typo in DiffusionLowLevelGitRefQuery
Summary: $refs_types is undefined. Test Plan: None. PhabricatorRepositoryRefCursor::TYPE_REF is not used with DiffusionLowLevelGitRefQuery. Reviewers: O1 Blessed Committers, speck Reviewed By: O1 Blessed Committers, speck Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno Differential Revision: https://we.phorge.it/D25468
This commit is contained in:
parent
296ce3956b
commit
4535e8753c
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ final class DiffusionLowLevelGitRefQuery extends DiffusionLowLevelQuery {
|
|||
|
||||
$with_branches = isset($ref_types[$type_branch]);
|
||||
$with_tags = isset($ref_types[$type_tag]);
|
||||
$with_refs = isset($refs_types[$type_ref]);
|
||||
$with_refs = isset($ref_types[$type_ref]);
|
||||
|
||||
$repository = $this->getRepository();
|
||||
|
||||
|
|
Loading…
Reference in a new issue