Opened 10 years ago
Closed 10 years ago
#29763 closed defect (bug) (fixed)
wp_list_bookmarks fails to order by description due to missing param in get_bookmarks() in bookmarks.php
Reported by: | Moto-Zulli | Owned by: | wonderboymusic |
---|---|---|---|
Milestone: | 4.1 | Priority: | normal |
Severity: | normal | Version: | 3.1.4 |
Component: | General | Keywords: | |
Focuses: | Cc: |
Description (last modified by )
line 253 in wp-includes/bookmarks.php includes the allowable orderby params:
$keys = array( 'link_id', 'link_name', 'link_url', 'link_visible', 'link_rating', 'link_owner', 'link_updated', 'link_notes');
but 'link_description' is missing. Adding back to bookmark.php restores the functionality but requires altering core files.
Change History (2)
Note: See
TracTickets for help on using
tickets.
Appears to be a regression in [18345]. The Codex still says that
link_description
is an acceptable parameter fororderby
.