Remove disable_some_pages(). Rely on cap checks. fixes #11770

git-svn-id: https://develop.svn.wordpress.org/trunk@12764 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2010-01-19 18:11:33 +00:00
parent 640c04fbe2
commit 411594ffd8
2 changed files with 3 additions and 28 deletions

View File

@ -1086,34 +1086,6 @@ if ( strpos( $_SERVER['PHP_SELF'], 'profile.php' ) ) {
add_action( 'admin_init', 'profile_page_email_warning_ob_start' );
}
function disable_some_pages() {
global $messages;
if ( strpos( $_SERVER['PHP_SELF'], 'user-new.php' ) && !get_site_option( 'add_new_users' ) ) {
if ( is_super_admin() ) {
$messages[] = '<div id="message" class="updated fade"><p>' . __( 'Warning! Only site administrators may see this page. Everyone else will see a <em>page disabled</em> message. Enable it again on <a href="ms-options.php#addnewusers">the options page</a>.' ) . '</p></div>';
} else {
wp_die( __('Page disabled by the administrator') );
}
}
$pages = array( 'theme-editor.php', 'plugin-editor.php' );
foreach( $pages as $page ) {
if ( strpos( $_SERVER['PHP_SELF'], $page ) ) {
wp_die( __('Page disabled by the administrator') );
}
}
$pages = array( 'theme-install.php', 'plugin-install.php' );
foreach( $pages as $page ) {
if ( strpos( $_SERVER['PHP_SELF'], $page ) && !is_super_admin() ) {
wp_die( __( "Sorry, you're not allowed here." ) );
}
}
}
add_action( 'admin_init', 'disable_some_pages' );
function blogs_listing_post() {
if ( !isset( $_POST[ 'action' ] ) ) {
return false;

View File

@ -12,6 +12,9 @@ require_once('admin.php');
if ( !current_user_can('create_users') )
wp_die(__('Cheatin&#8217; uh?'));
if ( is_multisite() && !get_site_option( 'add_new_users' ) )
wp_die( __('Page disabled by the administrator') );
/** WordPress Registration API */
require_once( ABSPATH . WPINC . '/registration.php');