Kanext Plugin throws error

Hi all,
I have installed Kanext plugin with Kanboard 1.2.19.
When I click on to my dashboard I get the following errors:

“Undefined variable: column in C:…\plugins\Kanext\Template\kanext_dashboard\dashboard\overview_paginator.php on line 76”

“Undefined variable: user in C:…\plugins\Kanext\Template\kanext_dashboard\dashboard\overview_paginator.php on line 103”

Anyone experienced the same issue? Any help is greatly appreciated.
Kind regards.

Solved the issue with a dirty fix. I defined the undefined variables ‘user’ and ‘column’ as "($column=null), ($user=null), " in line 76 in
“…\plugins\Kanext\Template\kanext_dashboard\dashboard\overview_paginator.php.”
The whole line thus becomes:

<?php if ($this->projectRole->canCreateTaskInColumn($result['project_id'], ($column=null), ($user=null), $column['id'])): ?>

As I said, it’s a dirty fix but it works, so hopefully no future errors :slight_smile:
Hope it helps someone.