Minor, resolve a method name conflict between ManiphestController and PhabricatorController.
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user