Changeset 6726 for trunk/wp-app.php
- Timestamp:
- 02/05/2008 06:47:27 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-app.php
r6645 r6726 165 165 log_app('function','get_service()'); 166 166 167 if( !current_user_can( 'edit_posts' ) ) 167 if( !current_user_can( 'edit_posts' ) ) 168 168 $this->auth_required( __( 'Sorry, you do not have the right to access this blog.' ) ); 169 169 … … 199 199 log_app('function','get_categories_xml()'); 200 200 201 if( !current_user_can( 'edit_posts' ) ) 201 if( !current_user_can( 'edit_posts' ) ) 202 202 $this->auth_required( __( 'Sorry, you do not have the right to access this blog.' ) ); 203 203 … … 296 296 297 297 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.' ) ); 299 299 300 300 $this->set_current_entry($postID);
Note: See TracChangeset
for help on using the changeset viewer.