Ticket #5784: r6778_user_administration.diff
| File r6778_user_administration.diff, 1.3 KB (added by ffemtcj, 4 years ago) |
|---|
-
wp-admin/includes/template.php
433 433 <td><label for='user_{$user_object->ID}'>$user_object->first_name $user_object->last_name</label></td> 434 434 <td><a href='mailto:$email' title='" . sprintf( __('e-mail: %s' ), $email ) . "'>$email</a></td> 435 435 <td><a href='$url' title='website: $url'>$short_url</a></td>"; 436 $r .= "\n\t\t<td align='center'>";436 $r .= "\n\t\t<td>"; 437 437 if ( $numposts > 0 ) { 438 438 $r .= "<a href='edit.php?author=$user_object->ID' title='" . __( 'View posts by this author' ) . "' class='edit'>"; 439 439 $r .= sprintf(__ngettext( 'View %s post', 'View %s posts', $numposts ), $numposts); -
wp-admin/users.php
298 298 <th><?php _e('E-mail') ?></th> 299 299 <th><?php _e('Website') ?></th> 300 300 <th><?php _e('Posts created') ?></th> 301 <th colspan="2" style="text-align: center"><?php _e('Actions') ?></th>301 <th><?php _e('Actions') ?></th> 302 302 </tr> 303 303 </tbody> 304 304 <tbody id="role-<?php echo $role; ?>" class="list:user user-list"><?php
