@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 bad Calendar query (missing space in "...event.phidAND...")

Auditors: lpriestley

+2 -2
+2 -2
src/applications/calendar/query/PhabricatorCalendarEventQuery.php
··· 64 64 if ($this->inviteePHIDs !== null) { 65 65 $parts[] = qsprintf( 66 66 $conn_r, 67 - 'JOIN %T invitee ON invitee.eventPHID = event.phid'. 68 - 'AND invitee.status != %s', 67 + 'JOIN %T invitee ON invitee.eventPHID = event.phid 68 + AND invitee.status != %s', 69 69 id(new PhabricatorCalendarEventInvitee())->getTableName(), 70 70 PhabricatorCalendarEventInvitee::STATUS_UNINVITED); 71 71 }