Skip to content

Commit 9a09e4c

Browse files
committed
Fix: syntax error in CommitteeTable
Updates #483
1 parent 6430e22 commit 9a09e4c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Application/Models/CommitteeTable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function find(?array $fields=null, ?string $order='name', ?int $itemsPerP
4343
break;
4444

4545
case 'department_id':
46-
$joins[] = 'committee_departments d on c.id=d.committee_id';
46+
$joins[] = 'join committee_departments d on c.id=d.committee_id';
4747
$where[] = "d.$k=:$k";
4848
$params[$k] = $v;
4949
break;

0 commit comments

Comments
 (0)