Make WordPress Core

Changeset 7946


Ignore:
Timestamp:
05/17/2008 06:50:54 PM (17 years ago)
Author:
ryan
Message:

Trailing whitespace cleanup.

File:
1 edited

Legend:

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

    r7945 r7946  
    1616            $content = $_REQUEST['content'];
    1717            if ($_REQUEST['content2'])
    18                 $content .= '<p>' . $_REQUEST['content2']; 
     18                $content .= '<p>' . $_REQUEST['content2'];
    1919            break;
    2020
     
    2323            if ($_REQUEST['content2']) {
    2424                $content .= '</blockquote>';
    25                 $content = $content . '<p>' . $_REQUEST['content2']; 
     25                $content = $content . '<p>' . $_REQUEST['content2'];
    2626            }
    2727            break;
     
    3737
    3838            if ($_REQUEST['content'])
    39                 $content = $content . '<br clear="all">' . $_REQUEST['content']; 
     39                $content = $content . '<br clear="all">' . $_REQUEST['content'];
    4040
    4141            break;
     
    4545            if ($_REQUEST['content2'])
    4646                $content .= '</br><p>' . $_REQUEST['content2'] . '</p>';
    47             break;             
     47            break;
    4848    }
    4949
     
    180180    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
    181181    <title><?php _e('Quick Post') ?></title>
    182    
     182
    183183    <script type="text/javascript" src="../wp-includes/js/tinymce/tiny_mce.js"></script>
    184        
     184
    185185<?php
    186186    wp_enqueue_script('jquery-ui-tabs');
     
    192192?>
    193193    <script type="text/javascript">
    194     <?php if ( user_can_richedit() ) { 
     194    <?php if ( user_can_richedit() ) {
    195195        $language = ( '' == get_locale() ) ? 'en' : strtolower( substr(get_locale(), 0, 2) );
    196196        // Add TinyMCE languages
     
    206206                sl.markDone(base + '/themes/advanced/langs/' + ln + '_dlg.js');
    207207            })();
    208            
     208
    209209            tinyMCE.init({
    210210                mode: "textareas",
     
    347347                            padding:        2px;
    348348                            background-color: #f4f4f4;
    349                             margin-right:   7px; 
    350                             margin-bottom:  7px; 
     349                            margin-right:   7px;
     350                            margin-bottom:  7px;
    351351                            cursor:         pointer;
    352352                        }
     
    359359
    360360                    <?php tag_div(); ?>
    361      
    362                     <div>         
     361
     362                    <div>
    363363                        <input type="submit" value="<?php _e('Create Photo') ?>" style="margin-top:15px;"   onclick="document.getElementById('photo_saving').style.display = '';"/>&nbsp;&nbsp;
    364364
     
    388388                    <div class="editor-container">
    389389                        <textarea name="content" id="regular_post_two" style="height:170px;width:100%;" class="mceEditor"><?php echo $selection;?><br>&lt;a href="<?php echo $url;?>"&gt;<?php echo $title;?>&lt;/a&gt;</textarea>
    390                     </div>       
     390                    </div>
    391391
    392392                    <?php tag_div(); ?>
    393        
    394                     <div>         
     393
     394                    <div>
    395395                        <input type="submit" value="<?php _e('Create Post') ?>" style="margin-top:15px;" onclick="document.getElementById('regular_saving').style.display = '';"/>&nbsp;&nbsp;
    396396                        <a href="#" onclick="if (confirm('<?php _e('Are you sure?') ?>')) { self.close(); } else { return false; }" style="color:#007BFF;"><?php _e('Cancel') ?></a>&nbsp;&nbsp;
     
    428428                    <?php tag_div(); ?>
    429429
    430                     <div>         
     430                    <div>
    431431                        <input type="submit" value="<?php echo attribute_escape(__('Create Quote')) ?>" style="margin-top:15px;" onclick="document.getElementById('quote_saving').style.display = '';"/>&nbsp;&nbsp;
    432432                        <a href="#" onclick="if (confirm('<?php _e('Are you sure?') ?>')) { self.close(); } else { return false; }" style="color:#007BFF;"><?php _e('Cancel') ?></a>&nbsp;&nbsp;
     
    452452                    <input name="post_title" id="post_title" class="text" value="<?php echo attribute_escape($title);?>"/>
    453453
    454                     <?php 
    455                     if ( preg_match("/youtube\.com\/watch/i", $url) ) { 
     454                    <?php
     455                    if ( preg_match("/youtube\.com\/watch/i", $url) ) {
    456456                        list($domain, $video_id) = split("v=", $url);
    457457                    ?>
     
    471471                    <?php tag_div(); ?>
    472472
    473                     <div>               
     473                    <div>
    474474                        <input type="submit" value="<?php _e('Create Video') ?>" style="margin-top:15px;" onclick="document.getElementById('video_saving').style.display = '';"/>&nbsp;&nbsp;
    475475                        <a href="#" onclick="if (confirm('<?php _e('Are you sure?') ?>')) { self.close(); } else { return false; }" style="color:#007BFF;"><?php _e('Cancel'); ?></a>&nbsp;&nbsp;
     
    482482exit;
    483483}
    484 ?>         
     484?>
Note: See TracChangeset for help on using the changeset viewer.