@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 an issue with `{M13}` and Spaces

Fixes T8529. These elements now need a viewer/object to render Spaces.

Auditors: btrahan

+5
+3
src/applications/pholio/remarkup/PholioRemarkupRule.php
··· 64 64 PhabricatorObjectHandle $handle, 65 65 $options) { 66 66 67 + $viewer = $this->getEngine()->getConfig('viewer'); 68 + 67 69 $embed_mock = id(new PholioMockEmbedView()) 70 + ->setUser($viewer) 68 71 ->setMock($object); 69 72 70 73 if (strlen($options)) {
+2
src/applications/pholio/view/PholioMockEmbedView.php
··· 47 47 list($x, $y) = $xform->getTransformedDimensions($thumbfile); 48 48 49 49 $item = id(new PHUIPinboardItemView()) 50 + ->setUser($this->getUser()) 51 + ->setObject($mock) 50 52 ->setHeader($header) 51 53 ->setURI($uri) 52 54 ->setImageURI($thumbnail)