Made it echo seconds if there are seconds left, or if ozero is true, or if no previous output was echoed
This commit is contained in:
parent
a611e251fc
commit
77c37c3f68
1 changed files with 2 additions and 1 deletions
|
@ -70,6 +70,7 @@ $ozero is whether to include a zero value for a unit
|
||||||
if ($buniti>=1) {
|
if ($buniti>=1) {
|
||||||
if ($out!='') $osep=$sep;
|
if ($out!='') $osep=$sep;
|
||||||
$x=round($ts,$sd);
|
$x=round($ts,$sd);
|
||||||
|
if ($x>0 || $ozero || $out=='')
|
||||||
($x==1) ? $out.=$osep.$x.' '.$fa[$i] : $out.=$osep.$x.' '.$fa[$i+1];
|
($x==1) ? $out.=$osep.$x.' '.$fa[$i] : $out.=$osep.$x.' '.$fa[$i+1];
|
||||||
}
|
}
|
||||||
return $out;
|
return $out;
|
||||||
|
|
Loading…
Reference in a new issue