Public: fix mobile drawer mode on topic pages

This commit is contained in:
Alexander Andreev 2026-02-21 14:12:26 +03:00
parent bb68d36641
commit ccb13f3e38

View File

@ -115,7 +115,7 @@ $photos = ($activeSectionId > 0 || $activeTopicId > 0)
? photosForPublic($filterMode === 'section' ? $activeSectionId : null, $filterMode === 'topic' ? $activeTopicId : null)
: [];
$photoCommentCounts = photoCommentCountsByPhotoIds(array_map(static fn(array $p): int => (int)$p['id'], $photos));
$isHomePage = $activeSectionId < 1 && $activePhotoId < 1;
$isHomePage = $activeSectionId < 1 && $activePhotoId < 1 && $activeTopicId < 1;
$isTopicMode = $filterMode === 'topic';
$isSectionMode = $filterMode === 'section';