Ticket #6812: img-captions2.patch
File img-captions2.patch, 2.0 KB (added by , 16 years ago) |
---|
-
wp-admin/js/media-upload.js
5 5 if (tinymce.isIE) 6 6 ed.selection.moveToBookmark(tinymce.EditorManager.activeEditor.windowManager.bookmark); 7 7 8 if ( h.indexOf('[wp_caption') != -1 ) 9 h = ed.plugins.wpeditimage._do_shcode(h); 10 8 11 ed.execCommand('mceInsertContent', false, h); 9 ed.execCommand('mceCleanup');10 12 } else 11 13 edInsertContent(edCanvas, h); 12 14 -
wp-includes/js/tinymce/plugins/wpeditimage/js/editimage.js
460 460 tinyMCEPopup.close(); 461 461 return; 462 462 } else { 463 if ( DL ) {463 if ( DL && DIV ) { 464 464 if ( f.link_href.value ) html = ed.dom.getOuterHTML(ed.dom.getParent(el, 'a')); 465 465 else html = ed.dom.getOuterHTML(el); 466 466 467 467 P = ed.dom.create('p', {}, html); 468 DL.parentNode.insertBefore(P,DL); 469 ed.dom.remove(DL.childNodes); 470 ed.dom.remove(DL); 468 DIV.parentNode.insertBefore(P, DIV); 469 ed.dom.remove(DIV); 471 470 } 472 471 } 473 472 -
wp-includes/script-loader.php
159 159 'edit' => __('Edit'), 160 160 ) ); 161 161 $scripts->add( 'admin-gallery', '/wp-admin/js/gallery.js', array( 'jquery-ui-sortable' ), '20080520' ); 162 $scripts->add( 'media-upload', '/wp-admin/js/media-upload.js', array( 'thickbox' ), '2008070 1' );162 $scripts->add( 'media-upload', '/wp-admin/js/media-upload.js', array( 'thickbox' ), '20080702' ); 163 163 $scripts->localize( 'upload', 'uploadL10n', array( 164 164 'browseTitle' => attribute_escape(__('Browse your files')), 165 165 'back' => __('« Back'),