Make WordPress Core

Ticket #3378: 3378.diff

File 3378.diff, 1.8 KB (added by mdawaffe, 18 years ago)
  • wp-includes/script-loader.php

     
    3030                        $this->add( 'admin-comments', '/wp-admin/edit-comments.js', array('listman'), '3847' );
    3131                        $this->add( 'admin-users', '/wp-admin/users.js', array('listman'), '3684' );
    3232                        $this->add( 'xfn', '/wp-admin/xfn.js', false, '3517' );
    33                         $this->add( 'upload', '/wp-admin/upload-js.php', array('prototype'), '4466' );
     33                        $this->add( 'upload', '/wp-admin/upload-js.php', array('prototype'), '####' );
    3434                }
    3535        }
    3636
  • wp-admin/upload-js.php

     
    233233                        if ( !win )
    234234                                win = top;
    235235                        tinyMCE = win.tinyMCE;
    236                         if ( typeof tinyMCE != 'undefined' && tinyMCE.getInstanceById('content') )
    237                                 win.tinyMCE.execCommand('mceInsertContent', false, h);
    238                         else
     236                        if ( typeof tinyMCE != 'undefined' && tinyMCE.getInstanceById('content') ) {
     237                                tinyMCE.selectedInstance.getWin().focus();
     238                                tinyMCE.execCommand('mceInsertContent', false, h);
     239                        } else
    239240                                win.edInsertContent(win.edCanvas, h);
    240241                        if ( !this.ID )
    241242                                this.cancelView();
     
    243244                },
    244245
    245246                deleteFile: function(id) {
    246                         if ( confirm("<?php printf(addslashes(__("Are you sure you want to delete the file %s?\nClick ok to delete or cancel to go back.")), '" + this.currentImage.title + "'); ?>") {
     247                        if ( confirm("<?php printf(js_escape(__("Are you sure you want to delete the file '%s'?\nClick ok to delete or cancel to go back.")), '" + this.currentImage.title + "'); ?>") ) {
    247248                                $('action-value').value = 'delete';
    248249                                $('upload-file').submit();
    249250                                return true;