bump theme to get navigation id specific classes (#4065)

This commit is contained in:
Kevin Papst
2023-05-26 22:39:07 +02:00
committed by GitHub
parent 9c1150c50e
commit 2ba9cff281
5 changed files with 65 additions and 69 deletions

View File

@@ -115,8 +115,8 @@ final class ProjectController extends BaseApiController
}
$ignoreDates = false;
if (null !== $paramFetcher->get('ignoreDates')) {
$ignoreDates = \intval($paramFetcher->get('ignoreDates')) === 1;
if (null !== ($ign = $paramFetcher->get('ignoreDates'))) {
$ignoreDates = $ign === 1 || $ign === '1';
}
if (!$ignoreDates) {