Changeset 15494
- Timestamp:
- 08/12/2010 12:38:46 AM (14 years ago)
- Location:
- trunk/wp-admin/network
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/network/sites.php
r15491 r15494 110 110 $is_main_site = is_main_site( $id ); 111 111 112 require_once( '. /admin-header.php' );112 require_once( '../admin-header.php' ); 113 113 ?> 114 114 <div class="wrap"> 115 115 <?php screen_icon(); ?> 116 116 <h2><?php _e( 'Edit Site' ); ?> - <a href="<?php echo esc_url( get_home_url( $id ) ); ?>"><?php echo esc_url( get_home_url( $id ) ); ?></a></h2> 117 <form method="post" action=" ms-edit.php?action=updateblog">117 <form method="post" action="edit.php?action=updateblog"> 118 118 <?php wp_nonce_field( 'editblog' ); ?> 119 119 <input type="hidden" name="id" value="<?php echo esc_attr( $id ) ?>" /> … … 349 349 case 'list': 350 350 default: 351 require_once( '. /includes/default-list-tables.php' );351 require_once( '../includes/default-list-tables.php' ); 352 352 353 353 $table = new WP_Sites_Table; 354 354 355 require_once( '. /admin-header.php' );355 require_once( '../admin-header.php' ); 356 356 ?> 357 357 … … 365 365 </h2> 366 366 367 <form action=" ms-sites.php" method="get" id="ms-search">367 <form action="" method="get" id="ms-search"> 368 368 <p class="search-box"> 369 369 <input type="hidden" name="action" value="blogs" /> … … 378 378 </form> 379 379 380 <form id="form-site-list" action=" ms-edit.php?action=allblogs" method="post">380 <form id="form-site-list" action="edit.php?action=allblogs" method="post"> 381 381 <?php $table->display(); ?> 382 382 </form> … … 385 385 <div id="form-add-site" class="wrap"> 386 386 <h3><?php _e( 'Add Site' ) ?></h3> 387 <form method="post" action=" ms-edit.php?action=addblog">387 <form method="post" action="edit.php?action=addblog"> 388 388 <?php wp_nonce_field( 'add-blog', '_wpnonce_add-blog' ) ?> 389 389 <table class="form-table"> … … 420 420 } // end switch( $action ) 421 421 422 include( './admin-footer.php' ); ?>422 require_once( '../admin-footer.php' ); ?> -
trunk/wp-admin/network/users.php
r15491 r15494 33 33 ); 34 34 35 require_once( '. /includes/default-list-tables.php' );35 require_once( '../includes/default-list-tables.php' ); 36 36 37 37 $table = new WP_MS_Users_Table; 38 38 39 require_once( '. /admin-header.php' );39 require_once( '../admin-header.php' ); 40 40 41 41 if ( isset( $_REQUEST['updated'] ) && $_REQUEST['updated'] == 'true' && ! empty( $_REQUEST['action'] ) ) { … … 75 75 </h2> 76 76 77 <form action=" ms-users.php" method="get" class="search-form">77 <form action="" method="get" class="search-form"> 78 78 <p class="search-box"> 79 79 <input type="text" name="s" value="<?php echo esc_attr( $s ); ?>" class="search-input" id="user-search-input" /> … … 82 82 </form> 83 83 84 <form id="form-user-list" action=' ms-edit.php?action=allusers' method='post'>84 <form id="form-user-list" action='edit.php?action=allusers' method='post'> 85 85 <?php $table->display(); ?> 86 86 </form> … … 92 92 <div class="wrap" id="form-add-user"> 93 93 <h3><?php _e( 'Add User' ) ?></h3> 94 <form action=" ms-edit.php?action=adduser" method="post">94 <form action="edit.php?action=adduser" method="post"> 95 95 <table class="form-table"> 96 96 <tr class="form-field form-required"> … … 111 111 </form> 112 112 </div> 113 <?php endif; ?>113 <?php endif; 114 114 115 <?php include( './admin-footer.php' ); ?>115 require_once( '../admin-footer.php' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.