(Applies to: all versions of FusionBB)
When looking at the Online tab page details, you might notice that some of the displayed information is missing a space.
The results might display as follows:
Registered users active in the past 30 minutes2
Unregistered users active in the past 30 minutes73
instead of:
Registered users active in the past 30 minutes 2
Unregistered users active in the past 30 minutes 73
(with a space before the final information of '2' and '73', in our example).
- This is easy to fix. You will need to edit your online.php file in your languages directory.
- The language strings you will need to fix are:
A_ON_NOW
R_ON_NOW
- Change your language strings to match the following (or copy/paste these over the ones in your file):
$lang_str['R_ON_NOW'] = "Registered users active in the past %s minutes: ";
$lang_str['A_ON_NOW'] = "Unregistered users active in the past %s minutes: ";
- Save your changes. This should restore the space in the display information.
(Thanks to FBB member kestral and FBB Admin Chris Peterson for the information in this topic!)