diff options
author | Squibid <me@zacharyscheiman.com> | 2023-12-26 23:02:42 -0500 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2023-12-26 23:02:42 -0500 |
commit | 0796c59f92954888dd413c6a277fab278bd9068a (patch) | |
tree | 539a75b85d820c038363a2108c6b712079d65626 /misc/tools.php | |
parent | 64b3371ac22051484886119cd0e27533cf1a6051 (diff) | |
download | wallheaven-0796c59f92954888dd413c6a277fab278bd9068a.tar.gz wallheaven-0796c59f92954888dd413c6a277fab278bd9068a.tar.bz2 wallheaven-0796c59f92954888dd413c6a277fab278bd9068a.zip |
spacing >:(
Diffstat (limited to 'misc/tools.php')
-rw-r--r-- | misc/tools.php | 2 |
1 files changed, 1 insertions, 1 deletions
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") |