Show a better message ondmins on link-manager.php, link-add.php, link.php when links are disabled.
Props nacin fixes #22569 git-svn-id: https://develop.svn.wordpress.org/trunk@22855 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
293f8923c4
commit
2986ab9418
@ -266,3 +266,25 @@ function wp_update_link( $linkdata ) {
|
||||
|
||||
return wp_insert_link( $linkdata );
|
||||
}
|
||||
|
||||
/**
|
||||
* @since 3.5.0
|
||||
* @access private
|
||||
*/
|
||||
function wp_link_manager_disabled_message() {
|
||||
global $pagenow;
|
||||
if ( 'link-manager.php' != $pagenow && 'link-add.php' != $pagenow && 'link.php' != $pagenow )
|
||||
return;
|
||||
|
||||
add_filter( 'pre_option_link_manager_enabled', '__return_true', 100 );
|
||||
$really_can_manage_links = current_user_can( 'manage_links' );
|
||||
remove_filter( 'pre_option_link_manager_enabled', '__return_true', 100 );
|
||||
|
||||
if ( $really_can_manage_links && current_user_can( 'install_plugins' ) ) {
|
||||
$link = network_admin_url( 'plugin-install.php?tab=search&s=Link+Manager' );
|
||||
wp_die( sprintf( __( 'If you are looking to use the link manager, please install the <a href="%s">Link Manager</a> plugin.' ), $link ) );
|
||||
}
|
||||
|
||||
wp_die( __( 'You do not have sufficient permissions to edit the links for this site.' ) );
|
||||
}
|
||||
add_action( 'admin_page_access_denied', 'wp_link_manager_disabled_message' );
|
||||
|
@ -15,7 +15,7 @@ require_once ('admin.php');
|
||||
wp_reset_vars(array('action', 'cat_id', 'linkurl', 'name', 'image', 'description', 'visible', 'target', 'category', 'link_id', 'submit', 'order_by', 'links_show_cat_id', 'rating', 'rel', 'notes', 'linkcheck[]'));
|
||||
|
||||
if ( ! current_user_can('manage_links') )
|
||||
wp_die( __('You do not have sufficient permissions to edit the links for this site.') );
|
||||
wp_link_manager_disabled_message();
|
||||
|
||||
if ( !empty($_POST['deletebookmarks']) )
|
||||
$action = 'deletebookmarks';
|
||||
|
Loading…
Reference in New Issue
Block a user