Opened 16 years ago
Closed 16 years ago
#13665 closed defect (bug) (fixed)
Incorrect author link in edit pages list
| Reported by: | markauk | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | 3.0 |
| Component: | General | Version: | 3.0 |
| Severity: | normal | Keywords: | has-patch |
| Cc: | Focuses: |
Description
In admin edit pages screen (ie list of all pages) clicking on an author link does not work - it still refers to pre-3.0 edit-pages.php.
The following fixes it:
change wp-admin/includes/template.php line 1625 (3.0rc1) from
<td <?php echo $attributes ?>><a href="edit-pages.php?author=<?php the_author_meta('ID'); ?>"><?php the_author() ?></a></td>
to
<td <?php echo $attributes ?>><a href="edit.php?post_type=page&author=<?php the_author_meta('ID'); ?>"><?php the_author() ?></a></td>
There is a similar bug when clicking on author link for custom post types, but I haven't found where that link is generated in the code.
Attachments (1)
Change History (3)
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
Fix for both pages and custom post types.