@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 coverage line index lookup in diffusion browser

Summary: I believe this got clobbered in rP8b6edaa4e238a809fe78e6d14ad0705545f8179f. This index doesn't seem to be present in the line dictionary and we're now relying on `$line_index` for the current position.

Test Plan:
before {F1085522}
after {F1085521}

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: epriestley

Differential Revision: https://secure.phabricator.com/D15156

+1 -1
+1 -1
src/applications/diffusion/controller/DiffusionBrowseController.php
··· 1180 1180 1181 1181 if ($this->coverage) { 1182 1182 require_celerity_resource('differential-changeset-view-css'); 1183 - $cov_index = $line['line'] - 1; 1183 + $cov_index = $line_index; 1184 1184 1185 1185 if (isset($this->coverage[$cov_index])) { 1186 1186 $cov_class = $this->coverage[$cov_index];