Hi,
Same behaviour, same problem, same version, but solution provided here ( https://track.projeqtor.org/view/main.php?directAccess=true&objectClass=Ticket&objectId=5178) did'nt work for me.
Here are the lines modified in /var/www/html/pilot/view/kanbanView.php :
$query="SELECT $tableName.id as id,
$tableName.name as name,
$tableName.id".$typeKanbanC."Type as idtickettype,
$tableName.idStatus as idstatus,
if(property_exists($typeKanbanC, "idUrgency"))$query.="$tableName.idUrgency as idurgency,";
$tableName.idProject as idproject,";
Something wrong ?
Regards
SOLVED : his is the right way to correct (I did a mistake) :
$query="SELECT $tableName.id as id,
$tableName.name as name,
$tableName.id".$typeKanbanC."Type as idtickettype,
$tableName.idStatus as idstatus,
$tableName.idProject as idproject,";
if(property_exists($typeKanbanC, "idUrgency"))$query.="$tableName.idUrgency as idurgency,";
if(property_exists($typeKanbanC, "idPriority")) {