Changeset 3857
- Timestamp:
- 06/08/2006 06:36:05 PM (18 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-functions.php
r3850 r3857 730 730 $short_url = substr($short_url, 0, 32).'...'; 731 731 $numposts = get_usernumposts($user_object->ID); 732 if (0 < $numposts) $numposts = "<a href='edit.php?author=$user_object->ID' title='" . __('View posts') . "'>$numposts</a>";733 732 $r = "<tr id='user-$user_object->ID'$style> 734 733 <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> … … 737 736 <td><a href='mailto:$email' title='" . sprintf(__('e-mail: %s'), $email) . "'>$email</a></td> 738 737 <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"); 741 745 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>"; 743 747 $r .= "</td>\n\t</tr>"; 744 748 return $r; -
trunk/wp-admin/menu.php
r3790 r3857 12 12 $menu[30] = array(__('Plugins'), 'activate_plugins', 'plugins.php'); 13 13 if ( current_user_can('edit_users') ) 14 $menu[35] = array(__('Users'), ' read', 'profile.php');14 $menu[35] = array(__('Users'), 'edit_users', 'users.php'); 15 15 else 16 16 $menu[35] = array(__('Profile'), 'read', 'profile.php'); … … 35 35 $submenu['link-manager.php'][20] = array(__('Import Bookmarks'), 'manage_links', 'link-import.php'); 36 36 37 $submenu['profile.php'][5] = array(__('Your Profile'), 'read', 'profile.php'); 38 $submenu['profile.php'][10] = array(__('Authors & Users'), 'edit_users', 'users.php'); 37 if ( current_user_can('edit_users') ) { 38 $submenu['users.php'][5] = array(__('Authors & 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 } 39 43 40 44 $submenu['options-general.php'][10] = array(__('General'), 'manage_options', 'options-general.php'); -
trunk/wp-admin/profile.php
r3804 r3857 4 4 $title = __('Profile'); 5 5 6 $parent_file = 'profile.php'; 6 if ( current_user_can('edit_users') ) 7 $parent_file = 'users.php'; 8 else 9 $parent_file = 'profile.php'; 7 10 include_once('admin-header.php'); 8 11 $profileuser = new WP_User($user_ID); -
trunk/wp-admin/user-edit.php
r3846 r3857 3 3 4 4 $title = __('Edit User'); 5 $parent_file = 'profile.php'; 5 if ( current_user_can('edit_users') ) 6 $parent_file = 'users.php'; 7 else 8 $parent_file = 'profile.php'; 6 9 $submenu_file = 'users.php'; 7 10 8 $wpvarstoreset = array('action', 'redirect', 'profile', 'user_id' );11 $wpvarstoreset = array('action', 'redirect', 'profile', 'user_id', 'wp_http_referer'); 9 12 for ($i=0; $i<count($wpvarstoreset); $i += 1) { 10 13 $wpvar = $wpvarstoreset[$i]; … … 22 25 } 23 26 27 $wp_http_referer = remove_query_arg(array('update', 'delete_count'), stripslashes($wp_http_referer)); 28 24 29 switch ($action) { 25 30 case 'switchposts': … … 41 46 42 47 if( !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"); 44 51 exit; 45 52 } … … 58 65 <div id="message" class="updated fade"> 59 66 <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('« Back to Authors and Users'); ?></a></p> 69 <?php endif; ?> 60 70 </div> 61 71 <?php endif; ?> … … 76 86 <form name="profile" id="your-profile" action="user-edit.php" method="post"> 77 87 <?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; ?> 78 91 <p> 79 92 <input type="hidden" name="from" value="profile" /> -
trunk/wp-admin/users.php
r3846 r3857 4 4 5 5 $title = __('Users'); 6 $parent_file = 'profile.php'; 6 if ( current_user_can('edit_users') ) 7 $parent_file = 'users.php'; 8 else 9 $parent_file = 'profile.php'; 7 10 8 11 $action = $_REQUEST['action']; 9 12 $update = ''; 10 13 14 if ( 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 11 23 switch ($action) { 12 24 … … 15 27 16 28 if (empty($_POST['users'])) { 17 header('Location: users.php');29 header('Location: ' . $redirect); 18 30 } 19 31 … … 21 33 die(__('You can’t edit users.')); 22 34 23 35 $userids = $_POST['users']; 24 36 $update = 'promote'; 25 26 27 37 foreach($userids as $id) { 38 if ( ! current_user_can('edit_user', $id) ) 39 die(__('You can’t edit that user.')); 28 40 // The new role of the current user must also have edit_users caps 29 41 if($id == $current_user->id && !$wp_roles->role_objects[$_POST['new_role']]->has_cap('edit_users')) { … … 32 44 } 33 45 34 35 36 37 38 header('Location: users.php?update=' . $update);46 $user = new WP_User($id); 47 $user->set_role($_POST['new_role']); 48 } 49 50 header('Location: ' . add_query_arg('update', $update, $redirect)); 39 51 40 52 break; … … 45 57 46 58 if ( empty($_POST['users']) ) { 47 header('Location: users.php');59 header('Location: ' . $redirect); 48 60 } 49 61 … … 52 64 53 65 $userids = $_POST['users']; 54 55 66 $update = 'del'; 56 foreach ($userids as $id) { 57 if ( ! current_user_can('delete_user', $id) ) 58 die(__('You can’t delete that user.')); 59 67 $delete_count = 0; 68 69 foreach ( (array) $userids as $id) { 70 if ( ! current_user_can('delete_user', $id) ) 71 die(__('You can’t delete that user.')); 72 60 73 if($id == $current_user->id) { 61 74 $update = 'err_admin_del'; 62 75 continue; 63 76 } 64 77 switch($_POST['delete_option']) { 65 78 case 'delete': 66 79 wp_delete_user($id); … … 70 83 break; 71 84 } 72 } 73 74 header('Location: users.php?update=' . $update); 85 ++$delete_count; 86 } 87 88 $redirect = add_query_arg('delete_count', $delete_count, $redirect); 89 90 header('Location: ' . add_query_arg('update', $update, $redirect)); 75 91 76 92 break; … … 80 96 check_admin_referer('bulk-users'); 81 97 82 if (empty($_POST['users'])) { 83 header('Location: users.php'); 84 } 98 if ( empty($_POST['users']) ) 99 header('Location: ' . $redirect); 85 100 86 101 if ( !current_user_can('delete_users') ) 87 $error = new WP_Error('edit_users', __('You can’t delete users.'));102 $errors = new WP_Error('edit_users', __('You can’t delete users.')); 88 103 89 104 $userids = $_POST['users']; … … 93 108 <form action="" method="post" name="updateusers" id="updateusers"> 94 109 <?php wp_nonce_field('delete-users') ?> 110 <?php echo $referer; ?> 95 111 <div class="wrap"> 96 112 <h2><?php _e('Delete Users'); ?></h2> … … 99 115 <?php 100 116 $go_delete = false; 101 foreach ($userids as $id) {102 103 if ( $id == $current_user->id) {117 foreach ( (array) $userids as $id ) { 118 $user = new WP_User($id); 119 if ( $id == $current_user->id ) { 104 120 echo "<li>" . sprintf(__('ID #%1s: %2s <strong>The current user will not be deleted.</strong>'), $id, $user->user_login) . "</li>\n"; 105 121 } else { … … 107 123 $go_delete = true; 108 124 } 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> 122 136 <ul style="list-style:none;"> 123 137 <li><label><input type="radio" id="delete_option0" name="delete_option" value="delete" checked="checked" /> … … 144 158 145 159 $user_id = add_user(); 160 $update = 'add'; 146 161 if ( is_wp_error( $user_id ) ) 147 $ errors = $user_id;162 $add_user_errors = $user_id; 148 163 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); 150 167 die(); 151 168 } 152 169 153 170 default: 154 wp_enqueue_script( 'admin-users' ); 155 156 include ('admin-header.php'); 157 158 $userids = $wpdb->get_col("SELECT ID FROM $wpdb->users;"); 159 160 foreach($userids as $userid) { 171 wp_enqueue_script('admin-users'); 172 173 include('admin-header.php'); 174 175 /* Paging and Search by Mark Jaquith, June 6th, 2006 */ 176 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?') . '">« 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 »</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 ) { 161 227 $tmp_user = new WP_User($userid); 162 228 $roles = $tmp_user->roles; … … 165 231 } 166 232 167 ?> 168 169 <?php 170 if (isset($_GET['update'])) : 233 if ( isset($_GET['update']) ) : 171 234 switch($_GET['update']) { 172 235 case 'del': 173 ?> 174 <div id="message" class="updated fade"><p><?php _e('User deleted.'); ?></p></div> 236 case 'del_many': 237 ?> 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> 175 240 <?php 176 241 break; … … 198 263 break; 199 264 } 200 endif; 201 if ( is_wp_error( $errors ) ) : ?> 265 endif; ?> 266 267 <?php if ( is_wp_error( $errors ) ) : ?> 202 268 <div class="error"> 203 269 <ul> 204 270 <?php 205 271 foreach ( $errors->get_error_messages() as $message ) 206 272 echo "<li>$message</li>"; 207 273 ?> 208 274 </ul> 209 275 </div> 210 <?php 211 endif; 212 ?> 276 <?php endif; ?> 277 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 »" /></p> 288 </form> 289 <?php if ( $search_term ) : ?> 290 <p><a href="users.php"><?php _e('« Back to All Users'); ?></a></p> 291 <?php endif; ?> 292 </div> 293 294 <?php if ( $userids ) : ?> 213 295 214 296 <form action="" method="post" name="updateusers" id="updateusers"> 215 297 <?php wp_nonce_field('bulk-users') ?> 216 298 <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> 218 309 <table class="widefat"> 219 310 <?php … … 223 314 224 315 <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> 226 317 </tr> 227 <thead> 228 <tr> 318 <tr class="thead"> 229 319 <th style="text-align: left"><?php _e('ID') ?></th> 230 320 <th style="text-align: left"><?php _e('Username') ?></th> … … 232 322 <th style="text-align: left"><?php _e('E-mail') ?></th> 233 323 <th style="text-align: left"><?php _e('Website') ?></th> 234 <th><?php _e('Posts') ?></th> 235 <th> </th> 324 <th colspan="2"><?php _e('Actions') ?></th> 236 325 </tr> 237 326 </thead> 238 327 <tbody id="role-<?php echo $role; ?>"><?php 239 328 $style = ''; 240 foreach ($roleclass as $user_object) { 241 $style = (' class="alternate"' == $style) ? '' : ' class="alternate"'; 242 echo "\n\t" . user_row( $user_object, $style ); 243 } 244 245 ?> 246 247 </tbody> 248 <?php 329 foreach ( (array) $roleclass as $user_object ) { 330 $style = ( ' class="alternate"' == $style ) ? '' : ' class="alternate"'; 331 echo "\n\t" . user_row($user_object, $style); 249 332 } 250 333 ?> 334 335 </tbody> 336 <?php } ?> 251 337 </table> 252 338 339 <?php if ( $paging_text ) : ?> 340 <div class="user-paging-text"><?php echo $paging_text; ?></div> 341 <?php endif; ?> 253 342 254 343 <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 »'); ?>" /></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 »'); ?>" /> 354 </p> 263 355 </div> 264 356 </form> 265 357 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 266 370 <div class="wrap"> 267 <h2 ><?php _e('Add New User') ?></h2>371 <h2 id="add-new-user"><?php _e('Add New User') ?></h2> 268 372 <?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> 303 <?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 »') ?>" /> 311 </p> 312 </form> 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> 404 <?php endif; ?> 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 »') ?>" /> 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; ?> 313 434 <div id="ajax-response"></div> 314 435 </div> 315 <?php 316 436 437 <?php 317 438 break; 318 } 439 440 } // end of the $action switch 319 441 320 442 include('admin-footer.php'); -
trunk/wp-admin/wp-admin.css
r3783 r3857 53 53 } 54 54 55 thead {55 thead, .thead { 56 56 background: #dfdfdf 57 57 } -
trunk/wp-includes/functions.php
r3855 r3857 810 810 $ret = ''; 811 811 if ( is_array(func_get_arg(0)) ) { 812 if ( @func_num_args() < 2 )812 if ( @func_num_args() < 2 || '' == @func_get_arg(1) ) 813 813 $uri = $_SERVER['REQUEST_URI']; 814 814 else 815 815 $uri = @func_get_arg(1); 816 816 } else { 817 if ( @func_num_args() < 3 )817 if ( @func_num_args() < 3 || '' == @func_get_arg(2) ) 818 818 $uri = $_SERVER['REQUEST_URI']; 819 819 else 820 820 $uri = @func_get_arg(2); 821 } 822 823 if ( preg_match('|^https?://|i', $uri, $matches) ) { 824 $protocol = $matches[0]; 825 $uri = substr($uri, strlen($protocol)); 826 } else { 827 $protocol = ''; 821 828 } 822 829 … … 830 837 $query = $parts[1]; 831 838 } 832 } 833 else if ( strstr($uri, '/') ) { 839 } else if ( strstr($uri, '/') ) { 834 840 $base = $uri . '?'; 835 841 $query = ''; … … 854 860 } 855 861 } 856 $ret = $base . $ret; 862 $ret = $protocol . $base . $ret; 863 if ( get_magic_quotes_gpc() ) 864 $ret = stripslashes($ret); // parse_str() adds slashes if magicquotes is on. See: http://php.net/parse_str 857 865 return trim($ret, '?'); 858 866 } 859 867 860 function remove_query_arg($key, $query) { 868 /* 869 remove_query_arg: Returns a modified querystring by removing 870 a single key or an array of keys. 871 Omitting oldquery_or_uri uses the $_SERVER value. 872 873 Parameters: 874 remove_query_arg(removekey, [oldquery_or_uri]) or 875 remove_query_arg(removekeyarray, [oldquery_or_uri]) 876 */ 877 878 function remove_query_arg($key, $query='') { 879 if ( is_array($key) ) { // removing multiple keys 880 foreach ( (array) $key as $k ) 881 $query = add_query_arg($k, '', $query); 882 return $query; 883 } 861 884 return add_query_arg($key, '', $query); 862 885 }
Note: See TracChangeset
for help on using the changeset viewer.