~canonical-sysadmins/wordpress/4.5.2

« back to all changes in this revision

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

  • Committer: Manuel Seelaus
  • Date: 2015-12-09 17:47:18 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: manuel.seelaus@canonical.com-20151209174718-coxethm2swbeqksy
Merge WP4.4 from upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
        '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>'
47
47
);
48
48
 
 
49
get_current_screen()->set_screen_reader_content( array(
 
50
        'heading_pagination' => __( 'Sites list navigation' ),
 
51
        'heading_list'       => __( 'Sites list' ),
 
52
) );
 
53
 
49
54
$id = isset( $_REQUEST['id'] ) ? intval( $_REQUEST['id'] ) : 0;
50
55
 
51
56
if ( isset( $_GET['action'] ) ) {
102
107
                                        <input type="hidden" name="_wp_http_referer" value="<?php echo esc_attr( wp_get_referer() ); ?>" />
103
108
                                        <?php wp_nonce_field( $site_action . '_' . $id, '_wpnonce', false ); ?>
104
109
                                        <p><?php echo sprintf( $manage_actions[ $site_action ], $site_address ); ?></p>
105
 
                                        <?php submit_button( __( 'Confirm' ), 'button' ); ?>
 
110
                                        <?php submit_button( __( 'Confirm' ), 'primary' ); ?>
106
111
                                </form>
107
112
                        </div>
108
113
                <?php