Skip to content
Merged
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
4 changes: 2 additions & 2 deletions imcger/recenttopicsng/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"type": "phpbb-extension",
"description": "Adds a list with a number of recent topics to the board index.",
"homepage": "https://github.com/IMC-GER/RecentTopicsNG",
"version": "1.0.0",
"time": "2025-06-11",
"version": "1.0.1",
"time": "2025-09-27",
"license": "GPL-2.0-only",
"authors": [
{
Expand Down
6 changes: 5 additions & 1 deletion imcger/recenttopicsng/core/rtng_functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,10 @@ private function getforumlist(): array

return array_unique($forum_ids);
}
else
{
return [];
}
}

/**
Expand Down Expand Up @@ -546,7 +550,7 @@ private function fill_template(array $icons, string $tpl_loopname, array $topic_
if ($this->user_setting['user_rtng_unread_only'])
{
topic_status($row, $replies, true, $folder_img, $folder_alt, $topic_type);
$unread_topic = ($this->user->data['user_id'] != ANONYMOUS) ?? false;
$unread_topic = $this->user->data['user_id'] != ANONYMOUS;
}
else
{
Expand Down
6 changes: 5 additions & 1 deletion imcger/recenttopicsng/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## Changelog Recent Topics NG V1.0.0
## Changelog Recent Topics NG V1.0.1
This is a non-exhaustive (but still near complete) changelog for Recent Topics NG 1.x including release candidate versions.

#### Changes since V1.0.0 (27/09/2025)
- [Change] Removed unnecessary NCO.
- [Fixed] Ensured that the correct variable type is always returned.

#### Changes since V1.0.0-rc1 (11/06/2025)
- [Change] The PHP code has been updated to include data types for the variables.
- [Change] The minimum version of PHP has been changed to 7.4.
Expand Down