Changeset 37914 for trunk/src/wp-admin/options.php
- Timestamp:
- 06/29/2016 03:15:40 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/options.php
r37488 r37914 48 48 wp_die( 49 49 '<h1>' . __( 'Cheatin’ uh?' ) . '</h1>' . 50 '<p>' . __( ' You are not allowed to manage these items.' ) . '</p>',50 '<p>' . __( 'Sorry, you are not allowed to manage these items.' ) . '</p>', 51 51 403 52 52 ); … … 77 77 wp_die( 78 78 '<h1>' . __( 'Cheatin’ uh?' ) . '</h1>' . 79 '<p>' . __( ' You are not allowed to delete these items.' ) . '</p>',79 '<p>' . __( 'Sorry, you are not allowed to delete these items.' ) . '</p>', 80 80 403 81 81 ); … … 161 161 if ( 'options' == $option_page ) { 162 162 if ( is_multisite() && ! is_super_admin() ) 163 wp_die( __( ' You do not have sufficient permissionsto modify unregistered settings for this site.' ) );163 wp_die( __( 'Sorry, you are not allowed to modify unregistered settings for this site.' ) ); 164 164 $options = explode( ',', wp_unslash( $_POST[ 'page_options' ] ) ); 165 165 } else {
Note: See TracChangeset
for help on using the changeset viewer.