MyBB Community Forums

Full Version: What variables are these ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
In indexboardstats you have:

$l['stats_mostonline'] = "The most users online at one time was {1} on {2} at {3}";

{1} = {$mostonline['numusers']}

but what  is {2} and {3} ?

I am trying to output the date and time with {$mostonline['time']} but the output is only something like "1494619330"
because time var have to be formatted at mybb date function as my_date in database this data was stored as unix timestamp.

2 and 3 must be values to use i order you like for multilang reasons.

If you use that vars in order you like you can set at your own but if you like to add new ones have to make core editions.
Yeah, it's ok. I am using it like this {2}{3} - suits my purpose.