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:
parent
07c113a0f3
commit
35fae8f452
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue