|
i found a bug in the admin page where you can change the "Forum Configuration" at the point where you can change the "Active Users List" and the "Display Moderator Groups on Main Page". When i try to change the "Display Moderator Groups on Main Page" to on it is impossible. it sets itself back. but when i change the "Active Users List" the "Display Moderator Groups on Main Page" changes automaticly to yes. i also found out where the bug is:
<tr bgcolor="#FFFFFF"> <td align="left" class="text">Active Users List<br> <span class="smText">Users of Access versions of the forum please note that for performance and other database issues that you DO NOT enable this item.</span></td> <td valign="top" class="text">On <input type="radio" name="activeUsers" value="True" <% If blnActiveUsers = True Then Response.Write "checked" %>> Off <input type="radio" value="False" <% If blnActiveUsers = False Then Response.Write "checked" %> name="activeUsers"></td> </tr> <tr bgcolor="#FFFFFF"> <td align="left" class="text"><p>Display Moderator Groups on Main Page:<br> <span class="smText">Display the moderator user group for each forum on the main page.</span></p> </td> <td valign="top" class="text">On <input type="radio" name="showMod" value="True" <% If blnActiveUsers = True Then Response.Write "checked" %>> Off <input type="radio" value="False" <% If blnActiveUsers = False Then Response.Write "checked" %> name="showMod"></td> </tr>
Change the last 2 blnActiveUsers to blnShowMod and this is solved.
On the other hand. changing this option doesn't do anything in the forum
Greetings Chris
------------- Using forum at http://www.gravenrode.nl/forum/forum - Gravenrode and http://www.gravenrode.nl/forum/test_forum - here and http://217.121.39.22/forum/test_forum - here
|