Created
September 18, 2025 09:08
-
-
Save unspezifisch/7b76617299c8263df55fd7fcffed1bd0 to your computer and use it in GitHub Desktop.
(Kanboard Plugin) fix for DueDate v1.2.1 error
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff '--color=auto' -burN original/table_tasks.php fixed/table_tasks.php | |
| --- original/table_tasks.php 2025-09-18 11:04:35.789150161 +0200 | |
| +++ fixed/table_tasks.php 2025-09-18 10:55:21.835035212 +0200 | |
| @@ -77,7 +77,7 @@ | |
| <td class=" | |
| board-column-<?= $column['id'] ?> | |
| - <?= $column['task_limit'] > 0 && $column['column_nb_tasks'] > $column['task_limit'] ? 'board-task-list-limit' : '' ?> | |
| + <?= !empty($column['column_nb_tasks']) && $column['task_limit'] > 0 && $column['column_nb_tasks'] > $column['task_limit'] ? 'board-task-list-limit' : '' ?> | |
| " | |
| > | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment