Make WordPress Core


Ignore:
Timestamp:
02/27/2007 03:24:54 PM (18 years ago)
Author:
markjaquith
Message:

trailing tabs and whitespace cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/post.php

    r4873 r4953  
    8181        $extended = '';
    8282    }
    83    
     83
    8484    // Strip leading and trailing whitespace
    8585    $main = preg_replace('/^[\s]*(.*)[\s]*$/', '\\1', $main);
     
    556556            $post_date_gmt = get_gmt_from_date($post_date);
    557557    }
    558        
     558
    559559    if ( 'publish' == $post_status ) {
    560560        $now = gmdate('Y-m-d H:i:59');
     
    705705    if ( 'future' == $post_status )
    706706        wp_schedule_single_event(strtotime($post_date_gmt. ' GMT'), 'publish_future_post', array($post_ID));
    707        
     707
    708708    do_action('save_post', $post_ID);
    709709    do_action('wp_insert_post', $post_ID);
     
    11081108    if (!empty($authors)) {
    11091109        $post_authors = preg_split('/[\s,]+/',$authors);
    1110        
     1110
    11111111        if ( count($post_authors) ) {
    11121112            foreach ( $post_authors as $post_author ) {
Note: See TracChangeset for help on using the changeset viewer.