Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. $query->matching(
  2. $query->logicalAnd(
  3. [
  4. // the following 4 lines are the problem lines
  5. $query->logicalAnd(
  6. $query->in('categories.uid', $categories),
  7. $query->in('categories.uid', $countryCategories)
  8. ),
  9. // $query->in('categories.uid', $categories),
  10. // $query->in('categories.uid', $countryCategories),
  11.  
  12. $query->logicalOr(
  13. [
  14. $query->equals('is_pinned', 0),
  15. $query->lessThan('pinned_until', time())
  16. ]
  17. ),
  18. ]
  19. )
  20. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement