@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.

Reference raw "title" row in Phriction paging, not "c.title"

Trivial mistake -- the query "SELECT x.y ..." selects a column named "y".
The other calls to "getRawRowProperty()" get this right.

+1 -1
+1 -1
src/applications/phriction/query/PhrictionDocumentQuery.php
··· 385 385 ); 386 386 387 387 if (isset($keys['title'])) { 388 - $map['title'] = $cursor->getRawRowProperty('c.title'); 388 + $map['title'] = $cursor->getRawRowProperty('title'); 389 389 } 390 390 391 391 return $map;