@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 config name typo in SetupCheckPygment

Summary:
Use correct spelling of 'environment.append-paths' so that the current
value of the variable will display as expected in the
'pygmentize Not Found' setup issue screen.

Test Plan:
* Enabled Pygments but haven't installed it
* Follow 'unresolved setup issues' link to 'Not Found' screen
* See that 'envinronment.append-paths' is None
* Set 'environment.append-paths'
* See that 'envinronment.append-paths' is still None
* Apply this fix
* See that 'environment.append-paths' is now '/usr/bin'

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

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

authored by

Angelos Evripiotis and committed by
epriestley
81389e79 7d35625e

+1 -1
+1 -1
src/applications/config/check/PhabricatorSetupCheckPygment.php
··· 24 24 ->setSummary($summary) 25 25 ->setMessage($message) 26 26 ->addPhabricatorConfig('pygments.enabled') 27 - ->addPhabricatorConfig('envinronment.append-paths'); 27 + ->addPhabricatorConfig('environment.append-paths'); 28 28 } 29 29 } 30 30 }