Just noticed a program logic error in the program used for this board.
Well, not counting this post, I'd have 400 posts. In my signature, it says ..
Fellow Member (>400)
However, 400 posts is not greater than 400! Shouldn't either one of the following be true instead?
1. Have it so that it says "Fellow Member (>=400)"
2. Have it so that it says "Fellow Member (>399)"
3. The more graceful solution would be to change the logic
from ...
if (post_count >= 400), blah blah blah.
to ...
if (post_count > 400), blah blah blah.
Just my 2 cents.