Changeset 12622 for trunk/wp-admin/ms-users.php
- Timestamp:
- 01/07/2010 12:30:53 AM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/ms-users.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/ms-users.php
r12621 r12622 6 6 7 7 $title = __('WordPress MU › Admin › Users'); 8 $parent_file = ' wpmu-admin.php';8 $parent_file = 'ms-admin.php'; 9 9 10 10 wp_enqueue_script( 'admin-forms' ); … … 104 104 <div class="wrap"> 105 105 <h2><?php _e( $current_site->site_name ); ?> <?php _e("Users"); ?></h2> 106 <form action=" wpmu-users.php" method="get" class="search-form">106 <form action="ms-users.php" method="get" class="search-form"> 107 107 <p class="search-box"> 108 108 <input type="text" name="s" value="<?php if (isset($_GET['s'])) esc_attr( stripslashes( $s ) ); ?>" class="search-input" id="user-search-input" /> … … 126 126 127 127 <?php if( isset($_GET['s']) && $_GET['s'] != '' ) : ?> 128 <p><a href=" wpmu-blogs.php?action=blogs&s=<?php echo urlencode( stripslashes( $s ) ); ?>&blog_name=Search+blogs+by+name"><?php _e('Search Blogs for') ?> <strong><?php echo stripslashes( $s ) ?></strong></a></p>128 <p><a href="ms-blogs.php?action=blogs&s=<?php echo urlencode( stripslashes( $s ) ); ?>&blog_name=Search+blogs+by+name"><?php _e('Search Blogs for') ?> <strong><?php echo stripslashes( $s ) ?></strong></a></p> 129 129 <?php endif; ?> 130 130 … … 150 150 echo '<th scope="col" class="check-column"><input type="checkbox" /></th>'; 151 151 } else { ?> 152 <th scope="col"><a href=" wpmu-users.php?sortby=<?php echo $column_id ?>&<?php if( $_GET['sortby'] == $column_id ) { if( $_GET['order'] == 'DESC' ) { echo "order=ASC&" ; } else { echo "order=DESC&"; } } ?>apage=<?php echo $apage ?>"><?php echo $column_display_name; ?></a></th>152 <th scope="col"><a href="ms-users.php?sortby=<?php echo $column_id ?>&<?php if( $_GET['sortby'] == $column_id ) { if( $_GET['order'] == 'DESC' ) { echo "order=ASC&" ; } else { echo "order=DESC&"; } } ?>apage=<?php echo $apage ?>"><?php echo $column_display_name; ?></a></th> 153 153 <?php } ?> 154 154 <?php } ?> … … 221 221 foreach ( (array) $blogs as $key => $val ) { 222 222 $path = ($val->path == '/') ? '' : $val->path; 223 echo '<a href=" wpmu-blogs.php?action=editblog&id=' . $val->userblog_id . '">' . str_replace( '.' . $current_site->domain, '', $val->domain . $path ) . '</a>';223 echo '<a href="ms-blogs.php?action=editblog&id=' . $val->userblog_id . '">' . str_replace( '.' . $current_site->domain, '', $val->domain . $path ) . '</a>'; 224 224 echo ' <small class="row-actions">'; 225 225 226 226 // Edit 227 echo '<a href=" wpmu-blogs.php?action=editblog&id=' . $val->userblog_id . '">' . __('Edit') . '</a> | ';227 echo '<a href="ms-blogs.php?action=editblog&id=' . $val->userblog_id . '">' . __('Edit') . '</a> | '; 228 228 229 229 // View
Note: See TracChangeset
for help on using the changeset viewer.