I set up another forum, a fresh 2.0.22 install with subSilver template, to see which errors are inherent and which might be in the template, the mods, or my own changes. I am finding errors in the fresh install, as well.
Here is one of the errors in the fresh install. This is in the HTML code for the forum's index page.
Code: Select all
<td class="row1" align="left"><span class="gensmall">In total there is <b>1</b> user online :: 1 Registered, 0 Hidden and 0 Guests [ <span style="color:#FFA34F">Administrator</span> ] [ <span style="color:#006600">Moderator</span> ]<br />Most users ever online was <b>1</b> on 30 Oct 2007 10:09 am<br />Registered Users: <a href="profile.php?mode=viewprofile&u=2"style="color:#FFA34F"><b>wfw</b></a></span></td>
Code: Select all
In total there is 1 user online :: 1 Registered, 0 Hidden and 0 Guests [ Administrator ] [ Moderator ]
Most users ever online was 1 on 30 Oct 2007 10:09 am
Registered Users: wfw
Code: Select all
viewprofile&u=2"style="color:#FFA34F
The template for that part of the page is templates/subSilver/index_body.tpl. The faulty HTML originates in line 63 of the template,
Code: Select all
<td class="row1" align="left"><span class="gensmall">{TOTAL_USERS_ONLINE} [ {L_WHOSONLINE_ADMIN} ] [ {L_WHOSONLINE_MOD} ]<br />{RECORD_USERS}<br />{LOGGED_IN_USER_LIST}</span></td>
How might I fix this, and put a space in there where it should be? Any ideas?