Changeset 14315 for trunk/wp-app.php
- Timestamp:
- 04/30/2010 03:17:49 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-app.php
r14136 r14315 285 285 // check to see if AtomPub is enabled 286 286 if ( !get_option( 'enable_app' ) ) 287 $this->forbidden( sprintf( __( 'AtomPub services are disabled on this blog. An admin user can enable them at %s' ), admin_url('options-writing.php') ) );287 $this->forbidden( sprintf( __( 'AtomPub services are disabled on this site. An admin user can enable them at %s' ), admin_url('options-writing.php') ) ); 288 288 289 289 // dispatch … … 322 322 323 323 if ( !current_user_can( 'edit_posts' ) ) 324 $this->auth_required( __( 'Sorry, you do not have the right to access this blog.' ) );324 $this->auth_required( __( 'Sorry, you do not have the right to access this site.' ) ); 325 325 326 326 $entries_url = esc_attr($this->get_entries_url()); … … 363 363 364 364 if ( !current_user_can( 'edit_posts' ) ) 365 $this->auth_required( __( 'Sorry, you do not have the right to access this blog.' ) );365 $this->auth_required( __( 'Sorry, you do not have the right to access this site.' ) ); 366 366 367 367 $home = esc_attr(get_bloginfo_rss('url'));
Note: See TracChangeset
for help on using the changeset viewer.