~canonical-sysadmins/wordpress/4.2.4

« back to all changes in this revision

Viewing changes to wp-admin/network/index.php

  • Committer: Paul Gear
  • Date: 2015-04-24 01:35:20 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: paul.gear@canonical.com-20150424013520-w4p9ksth76zh6opw
Merge new upstream release 4.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
        wp_die( __( 'Multisite support is not enabled.' ) );
18
18
 
19
19
if ( ! current_user_can( 'manage_network' ) )
20
 
        wp_die( __( 'You do not have permission to access this page.' ) );
 
20
        wp_die( __( 'You do not have permission to access this page.' ), 403 );
21
21
 
22
22
$title = __( 'Dashboard' );
23
23
$parent_file = 'index.php';
50
50
 
51
51
get_current_screen()->set_help_sidebar(
52
52
        '<p><strong>' . __('For more information:') . '</strong></p>' .
53
 
        '<p>' . __('<a href="http://codex.wordpress.org/Network_Admin" target="_blank">Documentation on the Network Admin</a>') . '</p>' .
 
53
        '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin" target="_blank">Documentation on the Network Admin</a>') . '</p>' .
54
54
        '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>'
55
55
);
56
56