Make WordPress Core

Changeset 12752 for trunk/xmlrpc.php


Ignore:
Timestamp:
01/18/2010 08:34:48 PM (15 years ago)
Author:
ryan
Message:

Coding standards, space after if

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/xmlrpc.php

    r12735 r12752  
    22422242                if ( !empty( $content_struct['wp_page_template'] ) )
    22432243                    $page_template = $content_struct['wp_page_template'];
    2244             } elseif( $content_struct['post_type'] == 'post' ) {
     2244            } elseif ( $content_struct['post_type'] == 'post' ) {
    22452245                // This is the default, no changes needed
    22462246            } else {
     
    28282828
    28292829        foreach ($posts_list as $entry) {
    2830             if( !current_user_can( 'edit_post', $entry['ID'] ) )
     2830            if ( !current_user_can( 'edit_post', $entry['ID'] ) )
    28312831                continue;
    28322832
Note: See TracChangeset for help on using the changeset viewer.