@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 incorrect context extraction for relative Phriction links on Phriction pages

Summary: Ref T13077. This content extraction rule wasn't right and caused rendering on Phriction pages to extract context improperly.

Test Plan: Viewed pages in Phriction with relative links to other documents.

Maniphest Tasks: T13077

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

+1 -1
+1 -1
src/applications/phriction/markup/PhrictionRemarkupRule.php
··· 275 275 } 276 276 277 277 if ($context instanceof PhrictionDocument) { 278 - return $context->getSlug(); 278 + return $context->getContent()->getSlug(); 279 279 } 280 280 281 281 return null;