Make WordPress Core

Ticket #2793: 2793.8.diff

File 2793.8.diff, 25.9 KB (added by markjaquith, 17 years ago)

bigger, better

  • wp-includes/functions.php

     
    12951295function add_query_arg() {
    12961296        $ret = '';
    12971297        if ( is_array(func_get_arg(0)) ) {
    1298                 if ( @func_num_args() < 2 )
     1298                if ( @func_num_args() < 2 || '' == @func_get_arg(1) )
    12991299                        $uri = $_SERVER['REQUEST_URI'];
    13001300                else
    13011301                        $uri = @func_get_arg(1);
    13021302        } else {
    1303                 if ( @func_num_args() < 3 )
     1303                if ( @func_num_args() < 3 || '' == @func_get_arg(2) )
    13041304                        $uri = $_SERVER['REQUEST_URI'];
    13051305                else
    13061306                        $uri = @func_get_arg(2);
    13071307        }
    13081308
     1309        if ( preg_match('|^https?://|i', $uri, $matches) ) {
     1310                $protocol = $matches[0];
     1311                $uri = substr($uri, strlen($protocol));
     1312        } else {
     1313                $protocol = '';
     1314        }
     1315
    13091316        if ( strstr($uri, '?') ) {
    13101317                $parts = explode('?', $uri, 2);
    13111318                if ( 1 == count($parts) ) {
     
    13151322                        $base = $parts[0] . '?';
    13161323                        $query = $parts[1];
    13171324                }
    1318         }
    1319         else if ( strstr($uri, '/') ) {
     1325        } else if ( strstr($uri, '/') ) {
    13201326                $base = $uri . '?';
    13211327                $query = '';
    13221328        } else {
     
    13391345                        $ret .= "$k=$v";
    13401346                }
    13411347        }
    1342         $ret = $base . $ret;
     1348        $ret = $protocol . $base . $ret;
     1349        if ( get_magic_quotes_gpc() )
     1350                $ret = stripslashes($ret); // parse_str() adds slashes if magicquotes is on.  See: http://php.net/parse_str
    13431351        return trim($ret, '?');
    13441352}
    13451353
    1346 function remove_query_arg($key, $query) {
     1354/*
     1355remove_query_arg: Returns a modified querystring by removing
     1356a single key or an array of keys.
     1357Omitting oldquery_or_uri uses the $_SERVER value.
     1358
     1359Parameters:
     1360remove_query_arg(removekey, [oldquery_or_uri]) or
     1361remove_query_arg(removekeyarray, [oldquery_or_uri])
     1362*/
     1363
     1364function remove_query_arg($key, $query='') {
     1365        if ( is_array($key) ) { // removing multiple keys
     1366                foreach ( (array) $key as $k )
     1367                        $query = add_query_arg($k, '', $query);
     1368                return $query;
     1369        }
    13471370        return add_query_arg($key, '', $query);
    13481371}
    13491372
  • wp-admin/users.php

     
    33require_once( ABSPATH . WPINC . '/registration-functions.php');
    44
    55$title = __('Users');
    6 $parent_file = 'profile.php';
     6if ( current_user_can('edit_users') )
     7        $parent_file = 'users.php';
     8else
     9        $parent_file = 'profile.php';
    710
    811$action = $_REQUEST['action'];
    912$update = '';
    1013
     14if ( empty($_POST) ) {
     15        $referer = '<input type="hidden" name="wp_http_referer" value="'. wp_specialchars(stripslashes($_SERVER['REQUEST_URI'])) . '" />';
     16} elseif ( isset($_POST['wp_http_referer']) ) {
     17        $redirect = remove_query_arg(array('wp_http_referer', 'updated', 'delete_count'), urlencode(stripslashes($_POST['wp_http_referer'])));
     18        $referer = '<input type="hidden" name="wp_http_referer" value="' . wp_specialchars($redirect) . '" />';
     19} else {
     20        $redirect = 'users.php';
     21}
     22
    1123switch ($action) {
    1224
    1325case 'promote':
    1426        check_admin_referer('bulk-users');
    1527
    1628        if (empty($_POST['users'])) {
    17                 header('Location: users.php');
     29                header('Location: ' . $redirect);
    1830        }
    1931
    2032        if ( !current_user_can('edit_users') )
    2133                die(__('You can&#8217;t edit users.'));
    2234
    23         $userids = $_POST['users'];
     35        $userids = $_POST['users'];
    2436        $update = 'promote';
    25         foreach($userids as $id) {
    26                 if ( ! current_user_can('edit_user', $id) )
    27                         die(__('You can&#8217;t edit that user.'));
     37        foreach($userids as $id) {
     38                if ( ! current_user_can('edit_user', $id) )
     39                        die(__('You can&#8217;t edit that user.'));
    2840                // The new role of the current user must also have edit_users caps
    2941                if($id == $current_user->id && !$wp_roles->role_objects[$_POST['new_role']]->has_cap('edit_users')) {
    3042                        $update = 'err_admin_role';
    3143                        continue;
    3244                }
    3345
    34                 $user = new WP_User($id);
    35                 $user->set_role($_POST['new_role']);
    36         }
     46                $user = new WP_User($id);
     47                $user->set_role($_POST['new_role']);
     48        }
    3749
    38         header('Location: users.php?update=' . $update);
     50        header('Location: ' . add_query_arg('update', $update, $redirect));
    3951
    4052break;
    4153
     
    4456        check_admin_referer('delete-users');
    4557
    4658        if ( empty($_POST['users']) ) {
    47                 header('Location: users.php');
     59                header('Location: ' . $redirect);
    4860        }
    4961
    5062        if ( !current_user_can('delete_users') )
    5163                die(__('You can&#8217;t delete users.'));
    5264
    5365        $userids = $_POST['users'];
     66        $update = 'del';
     67        $delete_count = 0;
    5468
    55         $update = 'del';
    56         foreach ($userids as $id) {
    57                 if ( ! current_user_can('delete_user', $id) )
    58                         die(__('You can&#8217;t delete that user.'));
    59  
     69        foreach ( (array) $userids as $id) {
     70                if ( ! current_user_can('delete_user', $id) )
     71                        die(__('You can&#8217;t delete that user.'));
     72
    6073                if($id == $current_user->id) {
    6174                        $update = 'err_admin_del';
    6275                        continue;
    6376                }
    64                 switch($_POST['delete_option']) {
     77                switch($_POST['delete_option']) {
    6578                case 'delete':
    6679                        wp_delete_user($id);
    6780                        break;
     
    6982                        wp_delete_user($id, $_POST['reassign_user']);
    7083                        break;
    7184                }
     85                ++$delete_count;
    7286        }
    7387
    74         header('Location: users.php?update=' . $update);
     88        $redirect = add_query_arg('delete_count', $delete_count, $redirect);
    7589
     90        header('Location: ' . add_query_arg('update', $update, $redirect));
     91
    7692break;
    7793
    7894case 'delete':
    7995
    8096        check_admin_referer('bulk-users');
    8197
    82         if (empty($_POST['users'])) {
    83                 header('Location: users.php');
    84         }
     98        if ( empty($_POST['users']) )
     99                header('Location: ' . $redirect);
    85100
    86101        if ( !current_user_can('delete_users') )
    87                 $error = new WP_Error('edit_users', __('You can&#8217;t delete users.'));
     102                $errors = new WP_Error('edit_users', __('You can&#8217;t delete users.'));
    88103
    89104        $userids = $_POST['users'];
    90105
     
    92107?>
    93108<form action="" method="post" name="updateusers" id="updateusers">
    94109<?php wp_nonce_field('delete-users') ?>
     110<?php echo $referer; ?>
    95111<div class="wrap">
    96112<h2><?php _e('Delete Users'); ?></h2>
    97113<p><?php _e('You have specified these users for deletion:'); ?></p>
    98114<ul>
    99115<?php
    100116        $go_delete = false;
    101         foreach ($userids as $id) {
    102                 $user = new WP_User($id);
    103                 if ($id == $current_user->id) {
     117        foreach ( (array) $userids as $id ) {
     118                $user = new WP_User($id);
     119                if ( $id == $current_user->id ) {
    104120                        echo "<li>" . sprintf(__('ID #%1s: %2s <strong>The current user will not be deleted.</strong>'), $id, $user->user_login) . "</li>\n";
    105121                } else {
    106122                        echo "<li><input type=\"hidden\" name=\"users[]\" value=\"{$id}\" />" . sprintf(__('ID #%1s: %2s'), $id, $user->user_login) . "</li>\n";
    107123                        $go_delete = true;
    108124                }
    109         }
    110         $all_logins = $wpdb->get_results("SELECT ID, user_login FROM $wpdb->users ORDER BY user_login");
    111         $user_dropdown = '<select name="reassign_user">';
    112         foreach ($all_logins as $login) {
    113                 if ( $login->ID == $current_user->id || !in_array($login->ID, $userids) ) {
    114                         $user_dropdown .= "<option value=\"{$login->ID}\">{$login->user_login}</option>";
    115                 }
    116         }
    117         $user_dropdown .= '</select>';
    118         ?>
    119         </ul>
    120 <?php if($go_delete) : ?>
    121         <p><?php _e('What should be done with posts and links owned by this user?'); ?></p>
     125        }
     126        $all_logins = $wpdb->get_results("SELECT ID, user_login FROM $wpdb->users ORDER BY user_login");
     127        $user_dropdown = '<select name="reassign_user">';
     128        foreach ( (array) $all_logins as $login )
     129                if ( $login->ID == $current_user->id || !in_array($login->ID, $userids) )
     130                        $user_dropdown .= "<option value=\"{$login->ID}\">{$login->user_login}</option>";
     131        $user_dropdown .= '</select>';
     132        ?>
     133        </ul>
     134<?php if ( $go_delete ) : ?>
     135        <p><?php _e('What should be done with posts and links owned by this user?'); ?></p>
    122136        <ul style="list-style:none;">
    123137                <li><label><input type="radio" id="delete_option0" name="delete_option" value="delete" checked="checked" />
    124138                <?php _e('Delete all posts and links.'); ?></label></li>
     
    143157                die(__('You can&#8217;t create users.'));
    144158
    145159        $user_id = add_user();
     160        $update = 'add';
    146161        if ( is_wp_error( $user_id ) )
    147                 $errors = $user_id;
     162                $add_user_errors = $user_id;
    148163        else {
    149                 header('Location: users.php?update=add');
     164                $new_user_login = apply_filters('pre_user_login', sanitize_user(stripslashes($_POST['user_login']), true));
     165                $redirect = add_query_arg('usersearch', $new_user_login, $redirect);
     166                header('Location: ' . add_query_arg('update', $update, $redirect) . '#user-' . $user_id);
    150167                die();
    151168        }
    152169
    153170default:
    154         wp_enqueue_script( 'admin-users' );
     171        wp_enqueue_script('admin-users');
    155172
    156         include ('admin-header.php');
     173        include('admin-header.php');
    157174
    158         $userids = $wpdb->get_col("SELECT ID FROM $wpdb->users;");
     175        /* Paging and Search by Mark Jaquith, June 6th, 2006 */
    159176
    160         foreach($userids as $userid) {
     177        $users_per_page = 50;
     178
     179        $page = (int) $_GET['userspage'];
     180        if ( !$page )
     181                $page = 1;
     182
     183        $starton = ($page - 1) * $users_per_page;
     184
     185        $limit = 'LIMIT ' . $starton . ',' .  $users_per_page;
     186
     187        $search_term = $_GET['usersearch'];
     188        if ( $search_term ) {
     189                $searches = array();
     190                $search_sql = 'AND (';
     191                foreach ( array('user_login', 'user_nicename', 'user_email', 'user_url', 'display_name') as $col )
     192                        $searches[] = $col . " LIKE '%$search_term%'";
     193                $search_sql .= implode(' OR ', $searches);
     194                $search_sql .= ')';
     195                $search_term = stripslashes($search_term); // done with DB, from now on we want slashes gone
     196        }
     197
     198        if ( !$_GET['update'] && !$search_term && !$_GET['userspage'] && $wpdb->get_var("SELECT COUNT(ID) FROM $wpdb->users") > $users_per_page )
     199                $too_many_users = sprintf(__('Because this blog has more than %s users, they cannot all be shown on one page.  Use the paging or search functionality in order to find the user you want to edit.'), $users_per_page);
     200
     201        $from_where = "FROM $wpdb->users WHERE 1=1 $search_sql";
     202        $userids = $wpdb->get_col('SELECT ID ' . $from_where . $limit);
     203
     204        if ( $userids )
     205                $total_users_for_this_query = $wpdb->get_var('SELECT COUNT(ID) ' . $from_where); // no limit
     206        else
     207                $errors = new WP_Error('no_matching_users_found', __('No matching users were found!'));
     208
     209        // Now for the paging
     210        if ( $total_users_for_this_query > $users_per_page ) { // have to page the results
     211                $prev_page = ( $page > 1) ? true : false;
     212                $next_page = ( ($page * $users_per_page) < $total_users_for_this_query ) ? true : false;
     213                $paging_text = '';
     214                if ( $prev_page )
     215                        $paging_text .= '<p class="alignleft"><a href="' . add_query_arg(array('usersearch' => $search_term, 'userspage' => $page - 1), 'users.php?') . '">&laquo; Previous Page</a></p>';
     216                if ( $next_page )
     217                        $paging_text .= '<p class="alignright"><a href="' . add_query_arg(array('usersearch' => $search_term, 'userspage' => $page + 1), 'users.php?') . '">Next Page &raquo;</a></p>';
     218                if ( $prev_page || $next_page )
     219                        $paging_text .= '<br style="clear:both" />';
     220        }
     221
     222        // Clean up, we're done with these variables
     223        unset($prev_page, $next_page, $limit, $searches, $search_sql, $col);
     224
     225        // Make the user objects
     226        foreach ( (array) $userids as $userid ) {
    161227                $tmp_user = new WP_User($userid);
    162228                $roles = $tmp_user->roles;
    163229                $role = array_shift($roles);
    164230                $roleclasses[$role][$tmp_user->user_login] = $tmp_user;
    165231        }
    166232
    167         ?>
    168 
    169         <?php
    170         if (isset($_GET['update'])) :
     233        if ( isset($_GET['update']) ) :
    171234                switch($_GET['update']) {
    172235                case 'del':
     236                case 'del_many':
    173237                ?>
    174                         <div id="message" class="updated fade"><p><?php _e('User deleted.'); ?></p></div>
     238                        <?php $delete_count = (int) $_GET['delete_count']; ?>
     239                        <div id="message" class="updated fade"><p><?php printf(__('%1$s %2$s deleted.'), $delete_count, __ngettext('user', 'users', $delete_count) ); ?></p></div>
    175240                <?php
    176241                        break;
    177242                case 'add':
     
    197262                <?php
    198263                        break;
    199264                }
    200         endif;
    201         if ( is_wp_error( $errors ) ) : ?>
     265        endif; ?>
     266
     267<?php if ( is_wp_error( $errors ) ) : ?>
    202268        <div class="error">
    203269                <ul>
    204270                <?php
    205271                        foreach ( $errors->get_error_messages() as $message )
    206                                  echo "<li>$message</li>";
     272                                echo "<li>$message</li>";
    207273                ?>
    208274                </ul>
    209275        </div>
    210         <?php
    211         endif;
    212         ?>
     276<?php endif; ?>
    213277
     278<?php if ( $too_many_users ) : ?>
     279        <div id="message" class="updated">
     280                <p><?php echo $too_many_users; ?></p>
     281        </div>
     282<?php endif; ?>
     283
     284<div class="wrap">
     285        <h2><?php _e('Search For Users'); ?></h2>
     286        <form action="" method="get" name="search" id="search">
     287                <p><input type="text" name="usersearch" id="usersearch" value="<?php echo wp_specialchars($search_term); ?>" /> <input type="submit" value="Search &raquo;" /></p>
     288        </form>
     289        <?php if ( $search_term ) : ?>
     290                <p><a href="users.php"><?php _e('&laquo; Back to All Users'); ?></a></p>
     291        <?php endif; ?>
     292</div>
     293
     294<?php if ( $userids ) : ?>
     295
    214296<form action="" method="post" name="updateusers" id="updateusers">
    215297<?php wp_nonce_field('bulk-users') ?>
    216298<div class="wrap">
    217         <h2><?php _e('User List by Role'); ?></h2>
     299        <?php if ( $search_term ) : ?>
     300                <h2><?php printf(__('Users Matching "%s" by Role'), $search_term); ?></h2>
     301                <div class="user-paging-text"><?php echo $paging_text; ?></div>
     302        <?php else : ?>
     303                <h2><?php _e('User List by Role'); ?></h2>
     304                <?php if ( $paging_text ) : ?>
     305                        <div class="user-paging-text"><?php echo $paging_text; ?></p></div>
     306                <?php endif; ?>
     307        <?php endif; ?>
     308        <h3><?php printf(__('Results %1$s - %2$s of %3$s shown below'), $starton + 1, min($starton + $users_per_page, $total_users_for_this_query), $total_users_for_this_query); ?></h3>
    218309<table class="widefat">
    219310<?php
    220311foreach($roleclasses as $role => $roleclass) {
     
    222313?>
    223314
    224315<tr>
    225         <th colspan="8" align="left"><h3><?php echo $wp_roles->role_names[$role]; ?></h3></th>
     316        <th colspan="7" align="left"><h3><?php echo $wp_roles->role_names[$role]; ?></h3></th>
    226317</tr>
    227 <thead>
    228 <tr>
     318<tr class="thead">
    229319        <th style="text-align: left"><?php _e('ID') ?></th>
    230320        <th style="text-align: left"><?php _e('Username') ?></th>
    231321        <th style="text-align: left"><?php _e('Name') ?></th>
    232322        <th style="text-align: left"><?php _e('E-mail') ?></th>
    233323        <th style="text-align: left"><?php _e('Website') ?></th>
    234         <th><?php _e('Posts') ?></th>
    235         <th>&nbsp;</th>
     324        <th colspan="2"><?php _e('Actions') ?></th>
    236325</tr>
    237326</thead>
    238327<tbody id="role-<?php echo $role; ?>"><?php
    239328$style = '';
    240 foreach ($roleclass as $user_object) {
    241         $style = (' class="alternate"' == $style) ? '' : ' class="alternate"';
    242         echo "\n\t" . user_row( $user_object, $style );
     329foreach ( (array) $roleclass as $user_object ) {
     330        $style = ( ' class="alternate"' == $style ) ? '' : ' class="alternate"';
     331        echo "\n\t" . user_row($user_object, $style);
    243332}
    244 
    245333?>
    246334
    247335</tbody>
    248 <?php
    249 }
    250 ?>
     336<?php } ?>
    251337</table>
    252338
     339<?php if ( $paging_text ) : ?>
     340        <div class="user-paging-text"><?php echo $paging_text; ?></div>
     341<?php endif; ?>
    253342
    254343        <h2><?php _e('Update Users'); ?></h2>
    255   <ul style="list-style:none;">
    256         <li><input type="radio" name="action" id="action0" value="delete" /> <label for="action0"><?php _e('Delete checked users.'); ?></label></li>
    257         <li>
    258                 <input type="radio" name="action" id="action1" value="promote" /> <label for="action1"><?php _e('Set the Role of checked users to:'); ?></label>
    259                 <select name="new_role"><?php wp_dropdown_roles(); ?></select>
    260         </li>
    261   </ul>
    262         <p class="submit"><input type="submit" value="<?php _e('Update &raquo;'); ?>" /></p>
     344        <ul style="list-style:none;">
     345                <li><input type="radio" name="action" id="action0" value="delete" /> <label for="action0"><?php _e('Delete checked users.'); ?></label></li>
     346                <li>
     347                        <input type="radio" name="action" id="action1" value="promote" /> <label for="action1"><?php _e('Set the Role of checked users to:'); ?></label>
     348                        <select name="new_role"><?php wp_dropdown_roles(); ?></select>
     349                </li>
     350        </ul>
     351        <p class="submit">
     352                <?php echo $referer; ?>
     353                <input type="submit" value="<?php _e('Update &raquo;'); ?>" />
     354        </p>
    263355</div>
    264356</form>
    265357
     358<?php endif; // if users were returned ?>
     359
     360<?php
     361        if ( is_wp_error($add_user_errors) ) {
     362                foreach ( array('user_login' => 'user_login', 'first_name' => 'user_firstname', 'last_name' => 'user_lastname', 'email' => 'user_email', 'url' => 'user_uri', 'role' => 'user_role') as $formpost => $var ) {
     363                        $var = 'new_' . $var;
     364                        $$var = wp_specialchars(stripslashes($_POST[$formpost]));
     365                }
     366                unset($name);
     367        }
     368?>
     369
    266370<div class="wrap">
    267 <h2><?php _e('Add New User') ?></h2>
     371<h2 id="add-new-user"><?php _e('Add New User') ?></h2>
    268372<?php echo '<p>'.sprintf(__('Users can <a href="%1$s">register themselves</a> or you can manually create users here.'), get_settings('siteurl').'/wp-register.php').'</p>'; ?>
    269 <form action="" method="post" name="adduser" id="adduser">
    270   <?php wp_nonce_field('add-user') ?>
    271   <table class="editform" width="100%" cellspacing="2" cellpadding="5">
    272     <tr>
    273       <th scope="row" width="33%"><?php _e('Nickname') ?>
    274       <input name="action" type="hidden" id="action" value="adduser" /></th>
    275       <td width="66%"><input name="user_login" type="text" id="user_login" value="<?php echo $new_user_login; ?>" /></td>
    276     </tr>
    277     <tr>
    278       <th scope="row"><?php _e('First Name') ?> </th>
    279       <td><input name="first_name" type="text" id="first_name" value="<?php echo $new_user_firstname; ?>" /></td>
    280     </tr>
    281     <tr>
    282       <th scope="row"><?php _e('Last Name') ?> </th>
    283       <td><input name="last_name" type="text" id="last_name" value="<?php echo $new_user_lastname; ?>" /></td>
    284     </tr>
    285     <tr>
    286       <th scope="row"><?php _e('E-mail') ?></th>
    287       <td><input name="email" type="text" id="email" value="<?php echo $new_user_email; ?>" /></td>
    288     </tr>
    289     <tr>
    290       <th scope="row"><?php _e('Website') ?></th>
    291       <td><input name="url" type="text" id="url" value="<?php echo $new_user_uri; ?>" /></td>
    292     </tr>
    293 <?php
    294 $show_password_fields = apply_filters('show_password_fields', true);
    295 if ( $show_password_fields ) :
    296 ?>
    297     <tr>
    298       <th scope="row"><?php _e('Password (twice)') ?> </th>
    299       <td><input name="pass1" type="password" id="pass1" />
    300       <br />
    301       <input name="pass2" type="password" id="pass2" /></td>
    302     </tr>
     373<form action="#add-new-user" method="post" name="adduser" id="adduser">
     374<?php wp_nonce_field('add-user') ?>
     375<table class="editform" width="100%" cellspacing="2" cellpadding="5">
     376        <tr>
     377                <th scope="row" width="33%"><?php _e('Nickname') ?><input name="action" type="hidden" id="action" value="adduser" /></th>
     378                <td width="66%"><input name="user_login" type="text" id="user_login" value="<?php echo $new_user_login; ?>" /></td>
     379        </tr>
     380        <tr>
     381                <th scope="row"><?php _e('First Name') ?> </th>
     382                <td><input name="first_name" type="text" id="first_name" value="<?php echo $new_user_firstname; ?>" /></td>
     383        </tr>
     384        <tr>
     385                <th scope="row"><?php _e('Last Name') ?> </th>
     386                <td><input name="last_name" type="text" id="last_name" value="<?php echo $new_user_lastname; ?>" /></td>
     387        </tr>
     388        <tr>
     389                <th scope="row"><?php _e('E-mail') ?></th>
     390                <td><input name="email" type="text" id="email" value="<?php echo $new_user_email; ?>" /></td>
     391        </tr>
     392        <tr>
     393                <th scope="row"><?php _e('Website') ?></th>
     394                <td><input name="url" type="text" id="url" value="<?php echo $new_user_uri; ?>" /></td>
     395        </tr>
     396
     397<?php if ( apply_filters('show_password_fields', true) ) : ?>
     398        <tr>
     399                <th scope="row"><?php _e('Password (twice)') ?> </th>
     400                <td><input name="pass1" type="password" id="pass1" />
     401                <br />
     402                <input name="pass2" type="password" id="pass2" /></td>
     403        </tr>
    303404<?php endif; ?>
    304     <tr>
    305       <th scope="row"><?php _e('Role'); ?></th>
    306       <td><select name="role" id="role"><?php wp_dropdown_roles( get_settings('default_role') ); ?></select></td>
    307     </tr>
    308   </table>
    309   <p class="submit">
    310     <input name="adduser" type="submit" id="addusersub" value="<?php _e('Add User &raquo;') ?>" />
    311   </p>
    312   </form>
     405
     406        <tr>
     407                <th scope="row"><?php _e('Role'); ?></th>
     408                <td><select name="role" id="role">
     409                        <?php
     410                        if ( !$new_user_role )
     411                                $new_user_role = get_settings('default_role');
     412                        wp_dropdown_roles($new_user_role);
     413                        ?>
     414                        </select>
     415                </td>
     416        </tr>
     417</table>
     418<p class="submit">
     419        <?php echo $referer; ?>
     420        <input name="adduser" type="submit" id="addusersub" value="<?php _e('Add User &raquo;') ?>" />
     421</p>
     422</form>
     423
     424<?php if ( is_wp_error( $add_user_errors ) ) : ?>
     425        <div class="error">
     426                <ul>
     427                <?php
     428                        foreach ( $add_user_errors->get_error_messages() as $message )
     429                                echo "$message<br />";
     430                ?>
     431                </ul>
     432        </div>
     433<?php endif; ?>
    313434<div id="ajax-response"></div>
    314435</div>
    315         <?php
    316436
     437<?php
    317438break;
    318 }
    319439
     440} // end of the $action switch
     441
    320442include('admin-footer.php');
    321 ?>
     443?>
     444 No newline at end of file
  • wp-admin/wp-admin.css

     
    5252        font-size: 16px;
    5353}
    5454
    55 thead {
     55thead, .thead {
    5656        background: #dfdfdf
    5757}
    5858
  • wp-admin/admin-functions.php

     
    729729        if (strlen($short_url) > 35)
    730730                $short_url =  substr($short_url, 0, 32).'...';
    731731        $numposts = get_usernumposts($user_object->ID);
    732         if (0 < $numposts) $numposts = "<a href='edit.php?author=$user_object->ID' title='" . __('View posts') . "'>$numposts</a>";
    733732        $r = "<tr id='user-$user_object->ID'$style>
    734733                <td><input type='checkbox' name='users[]' id='user_{$user_object->ID}' value='{$user_object->ID}' /> <label for='user_{$user_object->ID}'>{$user_object->ID}</label></td>
    735734                <td><label for='user_{$user_object->ID}'><strong>$user_object->user_login</strong></label></td>
    736735                <td><label for='user_{$user_object->ID}'>$user_object->first_name $user_object->last_name</label></td>
    737736                <td><a href='mailto:$email' title='" . sprintf(__('e-mail: %s'), $email) . "'>$email</a></td>
    738737                <td><a href='$url' title='website: $url'>$short_url</a></td>";
    739         $r .= "\n\t\t<td align='center'>$numposts</td>";
    740         $r .= "\n\t\t<td>";
     738        $r .= "\n\t\t<td align='center'>";
     739        if ($numposts > 0) {
     740                $r .= "<a href='edit.php?author=$user_object->ID' title='" . __('View posts by this author') . "' class='edit'>";
     741                $r .= sprintf(__('View %1$s %2$s'), $numposts, __ngettext('post', 'posts', $numposts));
     742        }
     743        $r .= "</td>\n\t\t<td>";
     744        $edit_link = add_query_arg('wp_http_referer', wp_specialchars(urlencode(stripslashes($_SERVER['REQUEST_URI']))), "user-edit.php?user_id=$user_object->ID");
    741745        if ( current_user_can('edit_user', $user_object->ID) )
    742                 $r .= "<a href='user-edit.php?user_id=$user_object->ID' class='edit'>".__('Edit')."</a>";
     746                $r .= "<a href='$edit_link' class='edit'>".__('Edit')."</a>";
    743747        $r .= "</td>\n\t</tr>";
    744748        return $r;
    745749}
  • wp-admin/menu.php

     
    1111$menu[25] = array(__('Presentation'), 'switch_themes', 'themes.php');
    1212$menu[30] = array(__('Plugins'), 'activate_plugins', 'plugins.php');
    1313if ( current_user_can('edit_users') )
    14         $menu[35] = array(__('Users'), 'read', 'profile.php');
     14        $menu[35] = array(__('Users'), 'edit_users', 'users.php');
    1515else
    1616        $menu[35] = array(__('Profile'), 'read', 'profile.php');
    1717$menu[40] = array(__('Options'), 'manage_options', 'options-general.php');
     
    3434$submenu['link-manager.php'][10] = array(__('Add Bookmark'), 'manage_links', 'link-add.php');
    3535$submenu['link-manager.php'][20] = array(__('Import Bookmarks'), 'manage_links', 'link-import.php');
    3636
    37 $submenu['profile.php'][5] = array(__('Your Profile'), 'read', 'profile.php');
    38 $submenu['profile.php'][10] = array(__('Authors &amp; Users'), 'edit_users', 'users.php');
     37if ( current_user_can('edit_users') ) {
     38        $submenu['users.php'][5] = array(__('Authors &amp; Users'), 'edit_users', 'users.php');
     39        $submenu['users.php'][10] = array(__('Your Profile'), 'read', 'profile.php');
     40} else {
     41        $submenu['profile.php'][5] = array(__('Your Profile'), 'read', 'profile.php');
     42}
    3943
    4044$submenu['options-general.php'][10] = array(__('General'), 'manage_options', 'options-general.php');
    4145$submenu['options-general.php'][15] = array(__('Writing'), 'manage_options', 'options-writing.php');
  • wp-admin/profile.php

     
    33
    44$title = __('Profile');
    55
    6 $parent_file = 'profile.php';
     6if ( current_user_can('edit_users') )
     7        $parent_file = 'users.php';
     8else
     9        $parent_file = 'profile.php';
    710include_once('admin-header.php');
    811$profileuser = new WP_User($user_ID);
    912
  • wp-admin/user-edit.php

     
    22require_once('admin.php');
    33
    44$title = __('Edit User');
    5 $parent_file = 'profile.php';
     5if ( current_user_can('edit_users') )
     6        $parent_file = 'users.php';
     7else
     8        $parent_file = 'profile.php';
    69$submenu_file = 'users.php';
    710
    8 $wpvarstoreset = array('action', 'redirect', 'profile', 'user_id');
     11$wpvarstoreset = array('action', 'redirect', 'profile', 'user_id', 'wp_http_referer');
    912for ($i=0; $i<count($wpvarstoreset); $i += 1) {
    1013        $wpvar = $wpvarstoreset[$i];
    1114        if (!isset($$wpvar)) {
     
    2124        }
    2225}
    2326
     27$wp_http_referer = remove_query_arg(array('update', 'delete_count'), stripslashes($wp_http_referer));
     28
    2429switch ($action) {
    2530case 'switchposts':
    2631
     
    4045        $errors = edit_user($user_id);
    4146
    4247if( !is_wp_error( $errors ) ) {
    43         header("Location: user-edit.php?user_id=$user_id&updated=true");
     48        $redirect = "user-edit.php?user_id=$user_id&updated=true";
     49        $redirect = add_query_arg('wp_http_referer', urlencode($wp_http_referer), $redirect);
     50        header("Location: $redirect");
    4451        exit;
    4552}
    4653
     
    5764<?php if ( isset($_GET['updated']) ) : ?>
    5865<div id="message" class="updated fade">
    5966        <p><strong><?php _e('User updated.') ?></strong></p>
     67        <?php if ( $wp_http_referer ) : ?>
     68        <p><a href="<?php echo wp_specialchars($wp_http_referer); ?>"><?php _e('&laquo; Back to Authors and Users'); ?></a></p>
     69        <?php endif; ?>
    6070</div>
    6171<?php endif; ?>
    6272<?php if ( is_wp_error( $errors ) ) : ?>
     
    7585
    7686<form name="profile" id="your-profile" action="user-edit.php" method="post">
    7787<?php wp_nonce_field('update-user_' . $user_id) ?>
     88<?php if ( $wp_http_referer ) : ?>
     89        <input type="hidden" name="wp_http_referer" value="<?php echo wp_specialchars($wp_http_referer); ?>" />
     90<?php endif; ?>
    7891<p>
    7992<input type="hidden" name="from" value="profile" />
    8093<input type="hidden" name="checkuser_id" value="<?php echo $user_ID ?>" />