There are different admin themes around or if you mean the content, you might try this: http://ww.wp.xz.cn/extend/plugins/wordpress-dashboard-editor/ (I haven’t used it myself.)
Same issue occurs with Category Visibility-RH Rev 1.0.0d plugin.
I just used find and searched for $redirect_to in wp-login.php and replaced every instance of wp-admin with index.php. (My index.php is in my wordpress root.)
It doesn’t seem broken yet.
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! =)