Ticket #5784: r6778_user_administration.diff

File r6778_user_administration.diff, 1.3 KB (added by ffemtcj, 4 years ago)

Patch fixing alignment issue

  • wp-admin/includes/template.php

     
    433433                <td><label for='user_{$user_object->ID}'>$user_object->first_name $user_object->last_name</label></td> 
    434434                <td><a href='mailto:$email' title='" . sprintf( __('e-mail: %s' ), $email ) . "'>$email</a></td> 
    435435                <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>"; 
    437437        if ( $numposts > 0 ) { 
    438438                $r .= "<a href='edit.php?author=$user_object->ID' title='" . __( 'View posts by this author' ) . "' class='edit'>"; 
    439439                $r .= sprintf(__ngettext( 'View %s post', 'View %s posts', $numposts ), $numposts); 
  • wp-admin/users.php

     
    298298        <th><?php _e('E-mail') ?></th> 
    299299        <th><?php _e('Website') ?></th> 
    300300        <th><?php _e('Posts created') ?></th> 
    301         <th colspan="2" style="text-align: center"><?php _e('Actions') ?></th> 
     301        <th><?php _e('Actions') ?></th> 
    302302</tr> 
    303303</tbody> 
    304304<tbody id="role-<?php echo $role; ?>" class="list:user user-list"><?php