@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Month views with two instances of the same month day number highlight both as 'today'.

Summary: Fixes T8334, Month views with two instances of the same month day number highlight both as 'today'.

Test Plan: Open May, only today 27th should be highlighted

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

Maniphest Tasks: T8334

Differential Revision: https://secure.phabricator.com/D13044

+2 -1
+2 -1
src/view/phui/calendar/PHUICalendarMonthView.php
··· 228 228 $cell_day = null; 229 229 } 230 230 231 - if ($date && $date->format('j') == $this->day) { 231 + if ($date && $date->format('j') == $this->day && 232 + $date->format('m') == $this->month) { 232 233 $today_class = 'phui-calendar-today-slot phui-calendar-today'; 233 234 } else { 234 235 $today_class = 'phui-calendar-today-slot';