From 0796c59f92954888dd413c6a277fab278bd9068a Mon Sep 17 00:00:00 2001 From: Squibid Date: Tue, 26 Dec 2023 23:02:42 -0500 Subject: spacing >:( --- misc/tools.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'misc') diff --git a/misc/tools.php b/misc/tools.php index 9917be7..602722e 100644 --- a/misc/tools.php +++ b/misc/tools.php @@ -18,7 +18,7 @@ } } - function humanfilesize($size, $unit="") { + function humanfilesize($size, $unit = "") { if ((!$unit && $size >= 1 << 30) || $unit == "GB") return number_format($size / (1 << 30),2)."GB"; if ((!$unit && $size >= 1 << 20) || $unit == "MB") -- cgit v1.2.1