Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Changelog
1.9.3 (Unreleased)
-----------------------
- Fix #297: Fix custom time format
- Enh #302: Improve topic url of hidden tasks on stream

1.9.2 (January 8, 2026)
-----------------------
Expand Down
2 changes: 1 addition & 1 deletion module.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"version": "1.9.3",
"homepage": "https://github.com/humhub/tasks",
"humhub": {
"minVersion": "1.18.0-beta.6",
"minVersion": "1.18.0-beta.7",
"maxVersion": "1.18"
},
"screenshots": [
Expand Down
2 changes: 1 addition & 1 deletion widgets/lists/views/taskDetails.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<div class="task-list-task-topics">
<?php foreach (Topic::findByContent($task->content)->all() as $topic) : ?>
<?= TopicBadge::forTopic($topic) ?>
<?= TopicBadge::forTopic($topic, $task->content) ?>
<?php endforeach; ?>
</div>

Expand Down