Changeset 15481 for trunk/wp-admin/network/upgrade.php
- Timestamp:
- 07/30/2010 08:34:54 PM (15 years ago)
- Location:
- trunk/wp-admin/network
- Files:
-
- 1 added
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/network/upgrade.php
r15473 r15481 8 8 */ 9 9 10 require_once(' admin.php');10 require_once('./admin.php'); 11 11 12 12 if ( !is_multisite() ) … … 16 16 17 17 $title = __( 'Update Network' ); 18 $parent_file = ' ms-admin.php';18 $parent_file = 'upgrade.php'; 19 19 20 20 add_contextual_help($current_screen, … … 27 27 ); 28 28 29 require_once(' admin-header.php');29 require_once('../admin-header.php'); 30 30 31 31 if ( ! current_user_can( 'manage_network' ) ) … … 67 67 <!-- 68 68 function nextpage() { 69 location.href = " ms-upgrade-network.php?action=upgrade&n=<?php echo ($n + 5) ?>";69 location.href = "upgrade.php?action=upgrade&n=<?php echo ($n + 5) ?>"; 70 70 } 71 71 setTimeout( "nextpage()", 250 ); … … 76 76 default: 77 77 ?><p><?php _e( 'You can update all the sites on your network through this page. It works by calling the update script of each site automatically. Hit the link below to update.' ); ?></p> 78 <p><a class="button" href=" ms-upgrade-network.php?action=upgrade"><?php _e("Update Network"); ?></a></p><?php78 <p><a class="button" href="upgrade.php?action=upgrade"><?php _e("Update Network"); ?></a></p><?php 79 79 do_action( 'wpmu_upgrade_page' ); 80 80 break; … … 83 83 </div> 84 84 85 <?php include('. /admin-footer.php'); ?>85 <?php include('../admin-footer.php'); ?>
Note: See TracChangeset
for help on using the changeset viewer.