I’m using WordPress 2.0.5 and got this to work by just making the change below.
Starting on line 30, add the following to wp-includes/kses.php:
//include images in comments
'img' => array(
'src' => array(),
'alt' => array(),
'title' => array(),
'height' => array(),
'width' => array(),
),
(Thanks to nyflorac for providing the solution above, I basically just fixed the syntax.)
It’s working fine on my blog.
Oh, and happy new years! =)