1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-23 05:50:55 +01:00

Fix foreach key named same as arr

Summary: I assume this is a bug!

Test Plan: Look at it

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D6279
This commit is contained in:
Gareth Evans 2013-06-23 16:03:11 -07:00 committed by epriestley
parent 07c113a0f3
commit 35fae8f452

View file

@ -22,8 +22,8 @@ final class DifferentialDependsOnFieldSpecification
} }
$links = array(); $links = array();
foreach ($revision_phids as $revision_phids) { foreach ($revision_phids as $revision_phid) {
$links[] = $this->getHandle($revision_phids)->renderLink(); $links[] = $this->getHandle($revision_phid)->renderLink();
} }
return phutil_implode_html(phutil_tag('br'), $links); return phutil_implode_html(phutil_tag('br'), $links);