Skip to content

Commit

Permalink
Merge pull request #49 from alirezarayej/master
Browse files Browse the repository at this point in the history
fix Access Forbidden when moving task between columns
  • Loading branch information
jbaubree committed Jun 16, 2021
2 parents 9776cac + 783aab2 commit eb1bb3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Template/table_container.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
class="board-project-<?= $project['id'] ?>"
data-project-id="<?= $project['id'] ?>"
data-check-interval="<?= $board_private_refresh_interval ?>"
data-save-url="<?= $this->url->href('BoardAjaxController', 'save', array('project_id' => $project['id'])) ?>"
data-save-url="<?= $this->url->href('BoardAjaxController', 'save', array('project_id' => $project['id'], 'csrf_token' => $this->app->getToken()->getReusableCSRFToken())) ?>"
data-reload-url="<?= $this->url->href('BoardAjaxController', 'reload', array('project_id' => $project['id'])) ?>"
data-check-url="<?= $this->url->href('BoardAjaxController', 'check', array('project_id' => $project['id'], 'timestamp' => time())) ?>"
data-task-creation-url="<?= $this->url->href('TaskCreationController', 'show', array('project_id' => $project['id'])) ?>"
Expand Down

0 comments on commit eb1bb3a

Please sign in to comment.