Browse Source

php - correct hour overflow calculation in howmanyhrs

master
kanoi 9 years ago
parent
commit
92f7d8ce38
  1. 6
      pool/base.php

6
pool/base.php

@ -123,10 +123,10 @@ function howmanyhrs($tot, $days = false, $dh = false)
if ($min >= 30)
{
$hr++;
if ($hr == 24)
if ($hr > 23)
{
$days++;
$hr = 0;
$dy++;
$hr -= 24;
}
}
$ds = '';

Loading…
Cancel
Save