SMF Development > Fixed or Bogus Bugs
2.0.1, unread topics that are closed
Doctor Deejay:
When setting "Enable quick moderation" to "checkboxes" and viewing unread posts since your last visit, it has a small color issue. Closed topics don't have a blue background for the checkbox td. So it's like this:
[stickybg] [stickybg] [stickybg] [stickybg] [windowbg2]
But they should be like
[stickybg] [stickybg] [stickybg] [stickybg] [stickybg]
Fix:
Themes/Default/Recent.template.php
Search
--- Code: --- echo '
<td class="windowbg2" valign="middle" align="center">
<input type="checkbox" name="topics[]" value="', $topic['id'], '" class="input_check" />
</td>';
--- End code ---
Replace with
--- Code: --- echo '
<td class="' . (!empty($color_class) ? $color_class : 'windowbg2') . '" valign="middle" align="center">
<input type="checkbox" name="topics[]" value="', $topic['id'], '" class="input_check" />
</td>';
--- End code ---
Antechinus:
Will add it to the list. :)
Joshua Dickerson:
Please track it.
Doctor Deejay:
How? :P
Illori:
that comment was for a team member or beta tester/friend as those are the only groups that have access to track bugs in mantis.
Navigation
[0] Message Index
[#] Next page
Go to full version