diff options
author | Simon Rettberg | 2022-12-06 15:16:58 +0100 |
---|---|---|
committer | Simon Rettberg | 2022-12-06 15:16:58 +0100 |
commit | f4e3d5de6f77970b1bae1987e87878630b990ba2 (patch) | |
tree | 9587b4c282f45b09856f56ee747e1b431b8ed57b /modules-available/statistics/pages | |
parent | [locationinfo] Add Slider to configure browser zoom in URL panel (diff) | |
download | slx-admin-f4e3d5de6f77970b1bae1987e87878630b990ba2.tar.gz slx-admin-f4e3d5de6f77970b1bae1987e87878630b990ba2.tar.xz slx-admin-f4e3d5de6f77970b1bae1987e87878630b990ba2.zip |
[statistics] Add ID45 partition size filter
Closes #3927
Diffstat (limited to 'modules-available/statistics/pages')
-rw-r--r-- | modules-available/statistics/pages/summary.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules-available/statistics/pages/summary.inc.php b/modules-available/statistics/pages/summary.inc.php index 53b028fc..6781ff05 100644 --- a/modules-available/statistics/pages/summary.inc.php +++ b/modules-available/statistics/pages/summary.inc.php @@ -244,7 +244,7 @@ class SubPage $total = 0; foreach ($res as $row) { $total += $row['count']; - $gb = self::alignBySteps((int)ceil($row['id44mb'] / 1024), StatisticsFilter::SIZE_ID44); + $gb = self::alignBySteps((int)ceil($row['id44mb'] / 1024), StatisticsFilter::SIZE_PARTITION); $lines[$gb] = ($lines[$gb] ?? 0) + $row['count']; } asort($lines); |