1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00

Fixing an overlooked counter

Summary: Fixing an overlooked counter.

Test Plan: Make sure month view daily event lists actually display only 15 events per day

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: epriestley, Korvin

Differential Revision: https://secure.phabricator.com/D13411
This commit is contained in:
lkassianik 2015-06-23 17:48:29 -07:00
parent 3c7f4e5c5b
commit 8ccd280889

View file

@ -104,6 +104,7 @@ final class PHUICalendarMonthView extends AphrontView {
if ($counter <= $max_daily) {
$list->addEvent($item);
}
$counter++;
}
$uri = $this->getBrowseURI();