Ok, definite bug. As I suspected, the condition for changing the icon class is arse about, so it's forcing the unchecked box when subscribed and the checked box when unsubscribed.
This:Should be this:That works the way it should. ![Smile :)]()
Nice catch. I'd edited that template for my own style, but missed spotting the faulty condition there. Cheers.
ETA: On the tracker now - https://tracker.phpbb.com/browse/PHPBB-17492
This:
Code:
<i class="icon <!-- IF S_WATCHING_TOPIC -->fa-square-o<!-- ELSE -->fa-check-square-o<!-- ENDIF -->
Code:
<i class="icon <!-- IF S_WATCHING_TOPIC -->fa-check-square-o<!-- ELSE -->fa-square-o<!-- ENDIF -->

Nice catch. I'd edited that template for my own style, but missed spotting the faulty condition there. Cheers.
ETA: On the tracker now - https://tracker.phpbb.com/browse/PHPBB-17492
Statistics: Posted by Gumboots — Thu Apr 10, 2025 10:53 am