@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 fatal when looking at an unknown-config error.

Summary:
Going to /config/issue/config.unknown.phabricator.setup/ fataled with

Call to a member function getLocked() on a non-object

Test Plan: Went to /config/issue/config.unknown.phabricator.setup/ and saw the page render.

Reviewers: epriestley, btrahan

Reviewed By: epriestley

CC: aran, Korvin

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

authored by

Ricky Elrod and committed by
epriestley
184be964 2584af2c

+1 -1
+1 -1
src/applications/config/view/PhabricatorSetupIssueView.php
··· 169 169 } else { 170 170 $update = array(); 171 171 foreach ($configs as $config) { 172 - if ($options[$config]->getLocked()) { 172 + if (!idx($options, $config) || $options[$config]->getLocked()) { 173 173 continue; 174 174 } 175 175 $link = phutil_render_tag(