MyBB Community Forums

Full Version: Help in Editing who's data
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi.
I want to edit xyz users active in past 10 minutes to xyz users active in past ten minutes.
( means i wanna input an text instead of numericals in minutes part.)
how to do it?
any one?
index_whosonline template consists of {$lang->online_note} ; it is from index.lang.php file

{1} {2} active in the past {3} minutes ({4} {5}, {6} of whom {7} invisible, and {8} {9}).
{3} represents the minutes (numeric value) ; not sure if it is easily possible to convert it to words !

from index.php file :
$lang->online_note = $lang->sprintf($lang->online_note, my_number_format($onlinecount), $onlinebit, $mybb->settings['wolcutoffmins'], my_number_format($membercount), $memberbit, my_number_format($anoncount), $anonbit, my_number_format($guestcount), $guestbit);
Thanks alot i sucessfully changed to words.