Make WordPress Core

Changeset 8517


Ignore:
Timestamp:
08/01/2008 05:10:27 AM (16 years ago)
Author:
azaozz
Message:

When not using image captions, IE may add caption null, for 2.7

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/gears-manifest.php

    r8512 r8517  
    6565{
    6666"betaManifestVersion" : 1,
    67 "version" : "<?php echo $man_version; ?>_20080730",
     67"version" : "<?php echo $man_version; ?>_20080731",
    6868"entries" : [
    6969<?php echo $defaults; ?>
     
    119119{ "url" : "../wp-includes/js/tinymce/themes/advanced/js/source_editor.js?ver=311b" },
    120120{ "url" : "../wp-includes/js/tinymce/themes/advanced/js/anchor.js?ver=311b" },
    121 { "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/js/editimage.js?ver=311e" },
     121{ "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/js/editimage.js?ver=311f" },
    122122{ "url" : "../wp-includes/js/tinymce/tiny_mce.js?ver=311b" },
    123123{ "url" : "../wp-includes/js/tinymce/themes/advanced/editor_template.js?ver=311b" },
     
    136136{ "url" : "../wp-includes/js/tinymce/plugins/fullscreen/fullscreen.htm?ver=311b" },
    137137{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/template.htm?ver=311b" },
    138 { "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/editimage.html?ver=311e" },
     138{ "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/editimage.html?ver=311f" },
    139139{ "url" : "../wp-includes/js/tinymce/wp-mce-help.php?ver=311b" },
    140140
     
    149149{ "url" : "../wp-includes/js/tinymce/plugins/paste/css/pasteword.css?ver=311b" },
    150150{ "url" : "../wp-includes/js/tinymce/plugins/paste/css/blank.css?ver=311b" },
    151 { "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/css/editimage.css?ver=311e" },
     151{ "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/css/editimage.css?ver=311f" },
    152152{ "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/css/editimage-rtl.css?ver=311b" },
    153153{ "url" : "../wp-includes/js/tinymce/wordpress.css?ver=311b" },
  • trunk/wp-includes/js/tinymce/plugins/wpeditimage/editimage.html

    r8512 r8517  
    55<title></title>
    66
    7 <script type="text/javascript" src="js/editimage.js?ver=311e"></script>
     7<script type="text/javascript" src="js/editimage.js?ver=311f"></script>
    88<script type="text/javascript" src="../../utils/form_utils.js?ver=311b"></script>
    99
    10 <link rel="stylesheet" href="css/editimage.css?ver=311e" type="text/css" media="all" />
    11 <link rel="stylesheet" href="../../../../../wp-admin/css/media.css?ver=2.6" type="text/css" media="all" />
     10<link rel="stylesheet" href="css/editimage.css?ver=311f" type="text/css" media="all" />
     11<link rel="stylesheet" href="../../../../../wp-admin/css/media.css?ver=20080709" type="text/css" media="all" />
    1212<script type="text/javascript">
    1313if ( 'rtl' == tinyMCEPopup.editor.getParam('directionality','') )
  • trunk/wp-includes/js/tinymce/plugins/wpeditimage/editor_plugin.js

    r8358 r8517  
    1616                    return;
    1717
    18                 tb_show('', url + '/editimage.html?ver=311e&TB_iframe=true');
     18                tb_show('', url + '/editimage.html?ver=311f&TB_iframe=true');
    1919                tinymce.DOM.setStyle( ['TB_overlay','TB_window','TB_load'], 'z-index', '999999' );
    2020            });
  • trunk/wp-includes/js/tinymce/plugins/wpeditimage/js/editimage.js

    r8358 r8517  
    246246
    247247    setup : function() {
    248         var t = this, h, c, el, id, link, fname, f = document.forms[0], ed = tinyMCEPopup.editor, d = t.I('img_demo'), dom = tinyMCEPopup.dom, DL, caption = null;
     248        var t = this, h, c, el, id, link, fname, f = document.forms[0], ed = tinyMCEPopup.editor, d = t.I('img_demo'), dom = tinyMCEPopup.dom, DL, caption = '';
    249249        document.dir = tinyMCEPopup.editor.getParam('directionality','');
    250250
  • trunk/wp-includes/js/tinymce/tiny_mce_config.php

    r8512 r8517  
    216216if ( $disk_cache ) {
    217217
    218     $cacheKey = apply_filters('tiny_mce_version', '20080730');
     218    $cacheKey = apply_filters('tiny_mce_version', '20080731');
    219219
    220220    foreach ( $initArray as $v )
Note: See TracChangeset for help on using the changeset viewer.