Skip to content

Commit

Permalink
#8700 Fixed typo
Browse files Browse the repository at this point in the history
(cherry picked from commit b330ac6)
  • Loading branch information
jonasraoni committed Jul 3, 2024
1 parent 556b210 commit 8550907
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions classes/log/EmailLogDAO.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ public function _getByEventType(int $assocType, int $assocId, int $eventType, ?i
->where('u.user_id', $userId)
)
)
->where('e.assoc_type', '=', (int) $assocType)
->where('e.assoc_id', '=', (int) $assocId)
->where('e.event_type', '=', (int) $eventType)
->orderBy('e.log_id')
->select('e.*');
$result = $this->retrieveRange($q, [], $rangeInfo);
Expand Down

0 comments on commit 8550907

Please sign in to comment.