Make WordPress Core

Ticket #22826: 22826.patch

File 22826.patch, 581 bytes (added by ocean90, 13 years ago)
  • wp-admin/includes/class-wp-media-list-table.php

     
    266266
    267267        case 'author':
    268268?>
    269                 <td <?php echo $attributes ?>><?php the_author() ?></td>
     269                <td <?php echo $attributes ?>><?php
     270                        printf( '<a href="%s">%s</a>',
     271                                esc_url( add_query_arg( 'author', get_the_author_meta( 'ID' ), 'upload.php' )),
     272                                get_the_author()
     273                        );
     274                ?></td>
    270275<?php
    271276                break;
    272277