You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I added multiple people to a task and used the filter allassignees:Username as the database complains about the syntax:
SQL: SQLSTATE[42601]: Syntax error: 7 ERROR: syntax error at or near "`"
It is this query that gives the error:
(SELECT id FROM `groups` WHERE `groups`.name='petcun')
I saw that fix #70 fixed a bug in mysql where "groups" was a reserved word, I removed the fix and postgres didn't complain about the syntax anymore and it worked.
The text was updated successfully, but these errors were encountered:
Kanboard version: 1.2.30
PHP Version: 8.2.7
Group_assign version: 1.8.2
PostgreSQL version: 15.2
I added multiple people to a task and used the filter allassignees:Username as the database complains about the syntax:
SQL: SQLSTATE[42601]: Syntax error: 7 ERROR: syntax error at or near "`"
It is this query that gives the error:
(SELECT id FROM `groups` WHERE `groups`.name='petcun')
I saw that fix #70 fixed a bug in mysql where "groups" was a reserved word, I removed the fix and postgres didn't complain about the syntax anymore and it worked.
The text was updated successfully, but these errors were encountered: