@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

authored by

Gareth Evans and committed by
epriestley
35fae8f4 07c113a0

+2 -2
+2 -2
src/applications/differential/field/specification/DifferentialDependsOnFieldSpecification.php
··· 22 22 } 23 23 24 24 $links = array(); 25 - foreach ($revision_phids as $revision_phids) { 26 - $links[] = $this->getHandle($revision_phids)->renderLink(); 25 + foreach ($revision_phids as $revision_phid) { 26 + $links[] = $this->getHandle($revision_phid)->renderLink(); 27 27 } 28 28 29 29 return phutil_implode_html(phutil_tag('br'), $links);