Skip to content

Commit

Permalink
#8700 Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasraoni committed Jul 3, 2024
1 parent be96a1a commit b330ac6
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 @@ -83,6 +83,9 @@ public function _getByEventType($assocType, $assocId, $eventType, $userId = null
->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 b330ac6

Please sign in to comment.