mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-27 01:02:42 +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;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function renderHandleList(array $phids) {
|
protected function renderHandlesForPHIDs(array $phids) {
|
||||||
$items = array();
|
$items = array();
|
||||||
foreach ($phids as $phid) {
|
foreach ($phids as $phid) {
|
||||||
$items[] = $this->getHandle($phid)->renderLink();
|
$items[] = $this->getHandle($phid)->renderLink();
|
||||||
|
|
|
@ -129,7 +129,7 @@ final class PhabricatorPasteViewController extends PhabricatorPasteController {
|
||||||
if ($child_phids) {
|
if ($child_phids) {
|
||||||
$properties->addProperty(
|
$properties->addProperty(
|
||||||
pht('Forks'),
|
pht('Forks'),
|
||||||
$this->renderHandleList($child_phids));
|
$this->renderHandlesForPHIDs($child_phids));
|
||||||
}
|
}
|
||||||
|
|
||||||
return $properties;
|
return $properties;
|
||||||
|
|
Loading…
Reference in a new issue