mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Minor, resolve a method name conflict between ManiphestController and PhabricatorController.
This commit is contained in:
parent
8c7b17142e
commit
1bf338170a
2 changed files with 2 additions and 2 deletions
|
@ -223,7 +223,7 @@ abstract class PhabricatorController extends AphrontController {
|
|||
return $this;
|
||||
}
|
||||
|
||||
protected function renderHandleList(array $phids) {
|
||||
protected function renderHandlesForPHIDs(array $phids) {
|
||||
$items = array();
|
||||
foreach ($phids as $phid) {
|
||||
$items[] = $this->getHandle($phid)->renderLink();
|
||||
|
|
|
@ -129,7 +129,7 @@ final class PhabricatorPasteViewController extends PhabricatorPasteController {
|
|||
if ($child_phids) {
|
||||
$properties->addProperty(
|
||||
pht('Forks'),
|
||||
$this->renderHandleList($child_phids));
|
||||
$this->renderHandlesForPHIDs($child_phids));
|
||||
}
|
||||
|
||||
return $properties;
|
||||
|
|
Loading…
Reference in a new issue