1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Minor, resolve a method name conflict between ManiphestController and PhabricatorController.

This commit is contained in:
epriestley 2012-08-15 13:58:27 -07:00
parent 8c7b17142e
commit 1bf338170a
2 changed files with 2 additions and 2 deletions

View file

@ -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();

View file

@ -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;