Make WordPress Core


Ignore:
Timestamp:
07/30/2010 08:34:54 PM (15 years ago)
Author:
ryan
Message:

Network Admin, first pass. see #14435

Location:
trunk/wp-admin/network
Files:
1 added
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/network/upgrade.php

    r15473 r15481  
    88 */
    99
    10 require_once('admin.php');
     10require_once('./admin.php');
    1111
    1212if ( !is_multisite() )
     
    1616
    1717$title = __( 'Update Network' );
    18 $parent_file = 'ms-admin.php';
     18$parent_file = 'upgrade.php';
    1919
    2020add_contextual_help($current_screen,
     
    2727);
    2828
    29 require_once('admin-header.php');
     29require_once('../admin-header.php');
    3030
    3131if ( ! current_user_can( 'manage_network' ) )
     
    6767        <!--
    6868        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) ?>";
    7070        }
    7171        setTimeout( "nextpage()", 250 );
     
    7676    default:
    7777        ?><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><?php
     78        <p><a class="button" href="upgrade.php?action=upgrade"><?php _e("Update Network"); ?></a></p><?php
    7979        do_action( 'wpmu_upgrade_page' );
    8080    break;
     
    8383</div>
    8484
    85 <?php include('./admin-footer.php'); ?>
     85<?php include('../admin-footer.php'); ?>
Note: See TracChangeset for help on using the changeset viewer.