MetaChat is an informal place for MeFites to touch base and post, discuss and
chatter about topics that may not belong on MetaFilter. Questions? Check the FAQ. Please note: This is important.
17 November 2008
Am I the only one not seeing a new comments count?→[More:]it's making me feel all weird. Please tell me I'm not alone *whimper*
I've had to make some changes in that area, as it was causing crashes for users who've made a lot of posts. It's possible that I commented out the "new comments" section while testing.
The good news is that the bug is fixed. Turns out that the following lines...
$content = preg_replace_callback(
'/[\x80-\xff]/',
create_function( '$j', 'return "&#".ord($j[0]).";";' ),
$content);
were completely screwing memory usage up. And if that looks nasty, then that's because it is.