Changeset View
Changeset View
Standalone View
Standalone View
src/applications/phortune/query/PhortuneMerchantQuery.php
| Show First 20 Lines • Show All 108 Lines • ▼ Show 20 Lines | if ($this->memberPHIDs !== null) { | ||||
| $where[] = qsprintf( | $where[] = qsprintf( | ||||
| $conn, | $conn, | ||||
| 'e.dst IN (%Ls)', | 'e.dst IN (%Ls)', | ||||
| $this->memberPHIDs); | $this->memberPHIDs); | ||||
| } | } | ||||
| $where[] = $this->buildPagingClause($conn); | $where[] = $this->buildPagingClause($conn); | ||||
| return $this->formatWhereClause($where); | return $this->formatWhereClause($conn, $where); | ||||
| } | } | ||||
| protected function buildJoinClause(AphrontDatabaseConnection $conn) { | protected function buildJoinClause(AphrontDatabaseConnection $conn) { | ||||
| $joins = array(); | $joins = array(); | ||||
| if ($this->memberPHIDs !== null) { | if ($this->memberPHIDs !== null) { | ||||
| $joins[] = qsprintf( | $joins[] = qsprintf( | ||||
| $conn, | $conn, | ||||
| Show All 13 Lines | |||||