Make WordPress Core

Changeset 6726 for trunk/wp-app.php


Ignore:
Timestamp:
02/05/2008 06:47:27 AM (17 years ago)
Author:
ryan
Message:

Trailing whitespace cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-app.php

    r6645 r6726  
    165165        log_app('function','get_service()');
    166166
    167         if( !current_user_can( 'edit_posts' ) ) 
     167        if( !current_user_can( 'edit_posts' ) )
    168168            $this->auth_required( __( 'Sorry, you do not have the right to access this blog.' ) );
    169169
     
    199199        log_app('function','get_categories_xml()');
    200200
    201         if( !current_user_can( 'edit_posts' ) ) 
     201        if( !current_user_can( 'edit_posts' ) )
    202202            $this->auth_required( __( 'Sorry, you do not have the right to access this blog.' ) );
    203203
     
    296296
    297297        if( !current_user_can( 'edit_post', $postID ) )
    298             $this->auth_required( __( 'Sorry, you do not have the right to access this post.' ) ); 
     298            $this->auth_required( __( 'Sorry, you do not have the right to access this post.' ) );
    299299
    300300        $this->set_current_entry($postID);
Note: See TracChangeset for help on using the changeset viewer.