Changes in trunk/wp-admin/network/sites.php [17322:18092]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/network/sites.php
r17322 r18092 35 35 '<li>' . __('Visit to go to the frontend site live.') . '</li></ul>' . 36 36 '<p>' . __('The site ID is used internally, and is not shown on the front end of the site or to users/viewers.') . '</p>' . 37 '<p>' . __('Clicking on bold settings can re-sort this table. The upper right icons switch between list and excerpt views.') . '</p>' .37 '<p>' . __('Clicking on bold headings can re-sort this table.') . '</p>' . 38 38 '<p><strong>' . __('For more information:') . '</strong></p>' . 39 39 '<p>' . __('<a href="http://codex.wordpress.org/Network_Admin_Sites_Screens" target="_blank">Documentation on Site Management</a>') . '</p>' . … … 89 89 $wp_list_table->prepare_items(); 90 90 91 $total_pages = $wp_list_table->get_pagination_arg( 'total_pages' );92 if ( $pagenum > $total_pages && $total_pages > 0 ) {93 wp_redirect( add_query_arg( 'paged', $total_pages ) );94 exit;95 }96 97 91 require_once( '../admin-header.php' ); 98 92 ?> … … 103 97 <?php echo $msg; ?> 104 98 <?php if ( current_user_can( 'create_sites') ) : ?> 105 <a href="<?php echo network_admin_url('site-new.php'); ?>" class=" buttonadd-new-h2"><?php echo esc_html_x( 'Add New', 'site' ); ?></a>99 <a href="<?php echo network_admin_url('site-new.php'); ?>" class="add-new-h2"><?php echo esc_html_x( 'Add New', 'site' ); ?></a> 106 100 <?php endif; ?> 107 101
Note: See TracChangeset
for help on using the changeset viewer.