Make WordPress Core

Changeset 8302


Ignore:
Timestamp:
07/09/2008 07:51:53 PM (16 years ago)
Author:
ryan
Message:

Don't format_to_edit TinyMCE inserts. Don't turn selection into a link. Restore editor contents when switching back to text tab. see #7261 #7220

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/press-this.php

    r8256 r8302  
    396396                set_menu('text');
    397397                set_title('<?php _e('Post') ?>');
     398                <?php if ($selection) { ?>
     399                    set_editor("<?php echo $selection; ?>");
     400                <?php } else { ?>
     401                    set_editor("<a href='<?php echo $url ?>'><?php echo $title; ?></a>");
     402                <? } ?>
    398403                return false;
    399404                break;
     
    401406                set_menu('quote');
    402407                set_title('<?php _e('Quote') ?>');
    403                 set_editor("<blockquote><p><?php echo format_to_edit($selection); ?> </p><p><cite><a href='<?php echo $url; ?>'><?php echo $title; ?> </a> </cite> </p></blockquote>");
     408                set_editor("<blockquote><p><?php echo $selection; ?> </p><p><cite><a href='<?php echo $url; ?>'><?php echo $title; ?> </a> </cite> </p></blockquote>");
    404409                return false;
    405410                break;
     
    436441                set_title('<?php _e('Post') ?>');
    437442                <?php if ($selection) { ?>
    438                     set_editor("<?php echo format_to_edit($selection); ?>");
    439                 <?php } ?>
     443                    set_editor("<?php echo $selection; ?>");
     444                <?php } else { ?>
     445                    set_editor("<a href='<?php echo $url ?>'><?php echo $title; ?></a>");
     446                <? } ?>
    440447                jQuery('#extra_fields').show();
    441448                jQuery('#extra_fields').before('<h2 id="waiting"><img src="images/loading.gif" alt="" /><?php echo js_escape( __( 'Loading...' ) ); ?></h2>');
     
    501508            <h2 id="content_type"><label for="content"><?php _e('Post') ?></label></h2>
    502509            <div class="editor-container">
    503                 <textarea name="content" id="content" style="width:100%;" class="mceEditor"><?php if ($selection) { ?><a href='<?php echo $url ?>'><?php echo format_to_edit($selection) ?></a><?php } else { ?><a href='<?php echo $url ?>'><?php echo $title; ?></a><?php } ?></textarea>
     510                <textarea name="content" id="content" style="width:100%;" class="mceEditor"><?php if ($selection) { echo wp_richedit_pre($selection); } else { ?><a href='<?php echo $url ?>'><?php echo $title; ?></a><?php } ?></textarea>
    504511            </div>
    505512        </div>
    506513    </div>
    507    
     514
    508515    <div id="categories">
    509516        <div class="submitbox" id="submitpost">
Note: See TracChangeset for help on using the changeset viewer.