hello!!! first of all, sorry my English……….. well….. now i have a bug to with the image uploader, the buttons doesn’t show up…… i fix this issue, just deleting the class of the correspondent div, this class is for the users who can’t see JavaScript, this tool doesn’t work correctly with WordPress 2.8.2.
What I did to fix this was in the general-templates.php file in the wp-includes folder, on the line 1672 you find this code:
`<div id=”media-buttons” class=”hide-if-no-js”>
<?php do_action( ‘media_buttons’ ); ?>
</div>`
Just delete the class in the div, just like the code below……
`<div id=”media-buttons”>
<?php do_action( ‘media_buttons’ ); ?>
</div>`
of course maybe the function of hide this buttons when the user does not have the ability to see JavaScript, doesn’t work any more, but this was the only simple change that works for me.
I hope that this simple change will prove to someone else, and sorry for my English again.