Make WordPress Core


Ignore:
Timestamp:
12/09/2008 06:03:31 PM (16 years ago)
Author:
ryan
Message:

Strip trailing whitespace

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/dashboard.php

    r10148 r10150  
    135135    echo "<p class='submit'><input type='hidden' name='widget_id' value='$meta_box[id]' /><input type='submit' value='" . __( 'Submit' ) . "' /></p>";
    136136
    137     echo '</form>'; 
     137    echo '</form>';
    138138}
    139139
     
    277277        printf(__ngettext('Theme <span class="b">%1$s</span> with <span class="b">%2$s Widget</span>', 'Theme <span class="b">%1$s</span> with <span class="b">%2$s Widgets</span>', $num_widgets), $ct->title, $num);
    278278    }
    279        
     279
    280280    echo '</p>';
    281281
     
    305305                'order' => 'DESC'
    306306            ) );
    307        
     307
    308308            if ( $drafts_query->posts )
    309309                $drafts =& $drafts_query->posts;
     
    330330            <textarea name="content" id="content" class="mceEditor" rows="3" cols="15" tabindex="2"><?php echo $post->post_content; ?></textarea>
    331331        </div>
    332        
     332
    333333        <script type="text/javascript">edCanvas = document.getElementById('content');edInsertContent = null;</script>
    334334
     
    438438            <p class="textright"><a href="edit-comments.php" class="button"><?php _e('View all'); ?></a></p>
    439439<?php   }
    440        
     440
    441441        wp_comment_reply( -1, false, 'dashboard', false );
    442442
     
    786786function wp_dashboard_trigger_widget_control( $widget_control_id = false ) {
    787787    global $wp_dashboard_control_callbacks;
    788    
     788
    789789    if ( is_scalar($widget_control_id) && $widget_control_id && isset($wp_dashboard_control_callbacks[$widget_control_id]) && is_callable($wp_dashboard_control_callbacks[$widget_control_id]) ) {
    790790        call_user_func( $wp_dashboard_control_callbacks[$widget_control_id], '', array( 'id' => $widget_control_id, 'callback' => $wp_dashboard_control_callbacks[$widget_control_id] ) );
Note: See TracChangeset for help on using the changeset viewer.