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

Fixing strictly null checks in CalendarInviteeQuery

Summary: Ref T7935, Fixing strictly null checks in CalendarInviteeQuery

Test Plan: Check code.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

Maniphest Tasks: T7935

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

+4 -4
+4 -4
src/applications/calendar/query/PhabricatorCalendarEventInviteeQuery.php
··· 59 59 $this->ids); 60 60 } 61 61 62 - if ($this->eventPHIDs) { 62 + if ($this->eventPHIDs !== null) { 63 63 $where[] = qsprintf( 64 64 $conn_r, 65 65 'eventPHID IN (%Ls)', 66 66 $this->eventPHIDs); 67 67 } 68 68 69 - if ($this->inviteePHIDs) { 69 + if ($this->inviteePHIDs !== null) { 70 70 $where[] = qsprintf( 71 71 $conn_r, 72 72 'inviteePHID IN (%Ls)', 73 73 $this->inviteePHIDs); 74 74 } 75 75 76 - if ($this->inviterPHIDs) { 76 + if ($this->inviterPHIDs !== null) { 77 77 $where[] = qsprintf( 78 78 $conn_r, 79 79 'inviterPHID IN (%Ls)', 80 80 $this->inviterPHIDs); 81 81 } 82 82 83 - if ($this->statuses) { 83 + if ($this->statuses !== null) { 84 84 $where[] = qsprintf( 85 85 $conn_r, 86 86 'status = %d',