Make WordPress Core

Ticket #18218: 18218.2.patch

File 18218.2.patch, 2.9 KB (added by ramiy, 13 years ago)
  • wp-admin/press-this.php

     
    597597                </div>
    598598
    599599                <?php if ( isset($posted) && intval($posted) ) { $post_ID = intval($posted); ?>
    600                 <div id="message" class="updated"><p><strong><?php _e('Your post has been saved.'); ?></strong> <a onclick="window.opener.location.replace(this.href); window.close();" href="<?php echo get_permalink( $post_ID); ?>"><?php _e('View post'); ?></a> | <a href="<?php echo get_edit_post_link( $post_ID ); ?>" onclick="window.opener.location.replace(this.href); window.close();"><?php _e('Edit Post'); ?></a> | <a href="#" onclick="window.close();"><?php _e('Close Window'); ?></a></p></div>
     600                <div id="message" class="updated"><p><strong><?php _e('Your post has been saved.'); ?></strong> <a onclick="window.opener.location.replace(this.href); window.close();" href="<?php echo get_permalink( $post_ID); ?>"><?php _e('View Post'); ?></a> | <a href="<?php echo get_edit_post_link( $post_ID ); ?>" onclick="window.opener.location.replace(this.href); window.close();"><?php _e('Edit Post'); ?></a> | <a href="#" onclick="window.close();"><?php _e('Close Window'); ?></a></p></div>
    601601                <?php } ?>
    602602
    603603                <div id="titlediv">
  • wp-includes/class-wp-xmlrpc-server.php

     
    952952                        return $this->error;
    953953
    954954                if ( !current_user_can( 'edit_posts' ) )
    955                         return new IXR_Error( 401, __( 'Sorry, you must be able to edit posts to this site in order to view categories.' ) );
     955                        return new IXR_Error( 401, __( 'Sorry, you must be able to edit posts on this site in order to view categories.' ) );
    956956
    957957                do_action('xmlrpc_call', 'wp.suggestCategories');
    958958
     
    22292229                if ( isset( $content_struct['wp_post_format'] ) ) {
    22302230                        $content_struct['wp_post_format'] = sanitize_key( $content_struct['wp_post_format'] );
    22312231                        if ( !array_key_exists( $content_struct['wp_post_format'], get_post_format_strings() ) ) {
    2232                                 return new IXR_Error( 404, __( 'Invalid post format' ) );
     2232                                return new IXR_Error( 404, __( 'Invalid post format.' ) );
    22332233                        }
    22342234                }
    22352235
     
    22582258                        switch ( $post_type ) {
    22592259                                case "post":
    22602260                                        if ( !current_user_can('edit_others_posts') )
    2261                                                 return(new IXR_Error(401, __('You are not allowed to post as this user')));
     2261                                                return(new IXR_Error(401, __('You are not allowed to post as this user.')));
    22622262                                        break;
    22632263                                case "page":
    22642264                                        if ( !current_user_can('edit_others_pages') )
    2265                                                 return(new IXR_Error(401, __('You are not allowed to create pages as this user')));
     2265                                                return(new IXR_Error(401, __('You are not allowed to create pages as this user.')));
    22662266                                        break;
    22672267                                default:
    22682268                                        return(new IXR_Error(401, __('Invalid post type.')));