Change condition to require at least 3 news items

This commit is contained in:
deepend-tildeclub 2025-12-18 17:48:40 -07:00 committed by GitHub
parent 6c3c875f03
commit 355c6982aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ if (isset($_GET['notice'])) {
} }
} }
if (!$selectedYear && count($filteredNews) >= 2) { if (!$selectedYear && count($filteredNews) >= 3) {
break; break;
} }
} }