Archive for May 16th, 2008

WordPress 2.5 won’t post images (sometimes)

Not uploading images (again)
This is the script that leads to the error:
/ send html to the post editor
2function send_to_editor(h) {
3 var win = window.opener ? window.opener : window.dialogArguments;
4 if ( !win )
5 win = top;
6 tinyMCE = win.tinyMCE;
7 if ( typeof tinyMCE != ‘undefined’ && ( ed = tinyMCE.getInstanceById(’content’) ) && !ed.isHidden() ) {
8 tinyMCE.selectedInstance.getWin().focus();
9 [...]