Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update settings-admin.php to add Exabyte
Signed-off-by: ChaosKid42 <[email protected]>
  • Loading branch information
ChaosKid42 authored May 14, 2023
commit e138f7492c10cb86cb334f061dc1417ce6fb6e6c
2 changes: 1 addition & 1 deletion templates/settings-admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
style('serverinfo', 'style');

function FormatMegabytes(int $byte): string {
$unim = ['MB', 'GB', 'TB', 'PB'];
$unim = ['MB', 'GB', 'TB', 'PB', 'EB'];
$count = 0;
while ($byte >= 1024) {
$count++;
Expand Down