@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 a typo in preamble X-Forwarded-For psuedocode

Summary: This psueudocode should use the result of computation at the end.

Test Plan: Read carefully.

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

+1 -1
+1 -1
src/docs/user/configuration/configuring_preamble.diviner
··· 82 82 83 83 $real_address = your_custom_parsing_function($raw_header); 84 84 85 - $_SERVER['REMOTE_ADDR'] = $raw_header; 85 + $_SERVER['REMOTE_ADDR'] = $real_address; 86 86 } 87 87 ``` 88 88