Quote:
Originally Posted by mharmon
I found another small bug. If someone has been on the forums 2 Days and 15 minutes for example, it says:
2 Day 15 Minutes
It leaves off the "s" for Days
|
That's right.. I don't know how I didn't spot it. Here is how to fix it.
In the includes/functions_showthread.php
find
PHP Code:
else
{
return $newtime." ".$vbphrase['day']." ".explain_time($time%86400,true);
}
change it to:
PHP Code:
else
{
return $newtime." ".$vbphrase['days']." ".explain_time($time%86400,true);
}
That is just adding an "s" to day
The txt is already updated