Fix sql error on acl user
authorEileen McNaughton <emcnaughton@wikimedia.org>
Sun, 17 Apr 2022 23:29:32 +0000 (11:29 +1200)
committerEileen McNaughton <emcnaughton@wikimedia.org>
Sun, 17 Apr 2022 23:29:32 +0000 (11:29 +1200)
CRM/Contribute/BAO/Contribution.php

index 2a937f46e24f5dc8c28de9e60048d156b633d525..9b8b0985555c396cb2d6ae7097b35e64c65fdfa8 100644 (file)
@@ -4393,7 +4393,7 @@ LIMIT 1;";
 
     $clauses = [];
     foreach ($whereClauses as $key => $clause) {
-      $clauses[] = 'b.' . $key . ' ' . implode(' AND b.' . $key, (array) $clause);
+      $clauses[] = 'b.' . $key . ' ' . implode(' AND b.' . $key . ' ', (array) $clause);
     }
     $clauses[] = 'b.contact_id IN (' . $contactIDs . ')';
     $clauses[] = 'b.is_test = 0';