Skip to content

Commit

Permalink
FIX: Syntax Errors
Browse files Browse the repository at this point in the history
- #9
- #6
  • Loading branch information
aljawaid committed Jul 4, 2023
1 parent 490b4bb commit 0942311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Model/ContactsTaskModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function getNotLinked($task_id)
->join(ContactsModel::TABLE, 'contacts_id', 'contacts_id')
->join(ContactsItemsModel::TABLE, 'id', 'item_id', ContactsModel::TABLE)
->asc(ContactsItemsModel::TABLE . '.position')
->groupBy(ContactsModel::TABLE.'.contacts_id')
->groupBy(ContactsModel::TABLE . '.contacts_id')
->asc(ContactsModel::TABLE . '.contact_item_value');

return $this->db
Expand Down

0 comments on commit 0942311

Please sign in to comment.