Make WordPress Core


Ignore:
Timestamp:
07/17/2016 04:04:50 PM (8 years ago)
Author:
SergeyBiryukov
Message:

I18N: Combine two duplicate "Invalid post type" strings.

Props @ramiy.
See #18218.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-xmlrpc-server.php

    r38051 r38076  
    13031303        $post_type = get_post_type_object( $post_data['post_type'] );
    13041304        if ( ! $post_type )
    1305             return new IXR_Error( 403, __( 'Invalid post type' ) );
     1305            return new IXR_Error( 403, __( 'Invalid post type.' ) );
    13061306
    13071307        $update = ! empty( $post_data['ID'] );
     
    40994099
    41004100        if ( ! post_type_exists( $post_type_name ) )
    4101             return new IXR_Error( 403, __( 'Invalid post type' ) );
     4101            return new IXR_Error( 403, __( 'Invalid post type.' ) );
    41024102
    41034103        $post_type = get_post_type_object( $post_type_name );
     
    48584858            } else {
    48594859                // No other post_type values are allowed here
    4860                 return new IXR_Error( 401, __( 'Invalid post type' ) );
     4860                return new IXR_Error( 401, __( 'Invalid post type.' ) );
    48614861            }
    48624862        } else {
     
    49164916                    break;
    49174917                default:
    4918                     return new IXR_Error( 401, __( 'Invalid post type' ) );
     4918                    return new IXR_Error( 401, __( 'Invalid post type.' ) );
    49194919            }
    49204920            $author = get_userdata( $content_struct['wp_author_id'] );
     
    51945194        // Use wp.editPost to edit post types other than post and page.
    51955195        if ( ! in_array( $postdata[ 'post_type' ], array( 'post', 'page' ) ) )
    5196             return new IXR_Error( 401, __( 'Invalid post type' ) );
     5196            return new IXR_Error( 401, __( 'Invalid post type.' ) );
    51975197
    51985198        // Thwart attempt to change the post type.
     
    52585258                        break;
    52595259                    default:
    5260                         return new IXR_Error( 401, __( 'Invalid post type' ) );
     5260                        return new IXR_Error( 401, __( 'Invalid post type.' ) );
    52615261                }
    52625262                $post_author = $content_struct['wp_author_id'];
Note: See TracChangeset for help on using the changeset viewer.