Forums
-
- Forum
- Posts
-
- Installation
- 28,535
- Troubleshooting
- 62,777
- Themes
- 10,444
- Plugins
- 15,384
- Requests & Feedback
- 14,986
- Showcase
- 3,257
-
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?)