Forums
-
- Forum
- Posts
-
- Installation
- 28,398
- Troubleshooting
- 62,311
- Themes
- 10,391
- Plugins
- 15,314
- Requests & Feedback
- 14,932
- Showcase
- 3,253
-
The problem is quite simple, really.
<li<?php if ($current_forum_id=get_forum_id()) {echo " class='on'";} ?>>
just needs to be changed to <li<?php if ($current_forum_id==get_forum_id()) {echo " class='on'";} ?>>
(Can you spot the difference?)