1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-30 10:42:41 +01:00

Use whole days in Differential stats

Test Plan: /differential/stats/revisions/

Reviewers: vii, jungejason, epriestley

Reviewed By: epriestley

CC: aran, epriestley

Differential Revision: https://secure.phabricator.com/D2867
This commit is contained in:
vrana 2012-06-26 16:20:41 -07:00
parent da45b09bb4
commit 665769d505

View file

@ -90,7 +90,7 @@ final class DifferentialRevisionStatsView extends AphrontView {
$revisions_seen[$rev_id] = true; $revisions_seen[$rev_id] = true;
foreach ($dates as $age => $cutoff) { foreach ($dates as $age => $cutoff) {
if ($cutoff > $rev_date) { if ($cutoff >= $rev_date) {
continue; continue;
} }
if ($rev) { if ($rev) {
@ -105,10 +105,9 @@ final class DifferentialRevisionStatsView extends AphrontView {
$old_count = 0; $old_count = 0;
foreach (array_reverse($dates) as $age => $cutoff) { foreach (array_reverse($dates) as $age => $cutoff) {
$weeks = ($now - $cutoff + 0.) / (7 * 60 * 60 * 24); $weeks = ceil(($now - $cutoff) / (60 * 60 * 24)) / 7;
if ($old_count == $counts[$age] && count($row_array) == 1) { if ($old_count == $counts[$age] && count($row_array) == 1) {
end($row_array); unset($dates[last_key($row_array)]);
unset($dates[key($row_array)]);
$row_array = array(); $row_array = array();
} }
$old_count = $counts[$age]; $old_count = $counts[$age];