Quote:
Originally Posted by mharmon
kentaurus --
it's working great for me now -- is there anyway to take out the "seconds" though on the display in the forums?
|
To get rid of the "seconds" part:
In the hack:
Code:
if ($time <= 1)
{
return $ignoredefault ? "" : $vbphrase['less_than_1_second'];
}
else if ($time < 60) // 60 is not still a minute
{
return $time." ".$vbphrase['seconds'];
}
change it to
Code:
if ($time < 60)
{
return $ignoredefault ? "" : "< 1 min";
}