Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.
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")) {