mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-30 08:28:20 +01:00
Fix a bad Calendar query (missing space in "...event.phidAND...")
Auditors: lpriestley
This commit is contained in:
parent
a54011b84e
commit
597566823e
1 changed files with 2 additions and 2 deletions
|
@ -64,8 +64,8 @@ final class PhabricatorCalendarEventQuery
|
|||
if ($this->inviteePHIDs !== null) {
|
||||
$parts[] = qsprintf(
|
||||
$conn_r,
|
||||
'JOIN %T invitee ON invitee.eventPHID = event.phid'.
|
||||
'AND invitee.status != %s',
|
||||
'JOIN %T invitee ON invitee.eventPHID = event.phid
|
||||
AND invitee.status != %s',
|
||||
id(new PhabricatorCalendarEventInvitee())->getTableName(),
|
||||
PhabricatorCalendarEventInvitee::STATUS_UNINVITED);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue