Skip to content

Instantly share code, notes, and snippets.

@unspezifisch
Created September 18, 2025 09:08
Show Gist options
  • Select an option

  • Save unspezifisch/7b76617299c8263df55fd7fcffed1bd0 to your computer and use it in GitHub Desktop.

Select an option

Save unspezifisch/7b76617299c8263df55fd7fcffed1bd0 to your computer and use it in GitHub Desktop.
(Kanboard Plugin) fix for DueDate v1.2.1 error
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