LOG-007 is a bug in a comment. Not the code below it — the comment itself, which confidently described behavior that the code never actually implemented.
What the forums needed
bbPress runs the forums, living inside WordPress at /blog/forums so login, ranks, and everything else stay one identity instead of two. It needed a look that fit the rest of the site rather than bbPress’s own defaults, and a layout dense enough to actually browse — more like an old-school forum index than a feed of cards.
The bug
Topic rows use floated cells — topic title, voice count, reply count, last post — and a comment above them claimed the floats “are cleared,” stating it as settled fact. No rule anywhere actually cleared them. The last-post cell, which needed roughly 210px to lay out a name and a timestamp on one line, was computing to 46px wide instead, wrapping to four lines and stretching every row to about 140px tall.
The fix was one rule: float: none; width: auto; on that cell, which dropped rows back down to a normal 82px. What made this one worth logging isn’t the fix — it’s that the bug survived a read-through. A comment stating something as already true is a claim, not a guarantee, and the only way it actually got caught was by opening dev tools and measuring the rendered width instead of trusting what the code said about itself.
Why this is LOG-007
Every other entry in this log is about a system doing something wrong. This one’s about a note that said a system was doing something right, and wasn’t. Worth remembering that the two don’t always get caught the same way.