#1943 closed defect (bug) (fixed)
function get_the_author_description() is not working properly
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | Priority: | normal | |
| Severity: | normal | Version: | 1.6 |
| Component: | Template | Keywords: | |
| Focuses: | Cc: |
Description
function get_the_author_description() in wp-includes/template-functions-author.php is not working properly due to table "users" is splitted into "users" and "usermeta"
Original code is
return $authordata->user_description;
and it should be revised to
return $authordata->description;
Change History (2)
Note: See
TracTickets for help on using
tickets.
(In [3205]) s/user_description/description/. Props tinyau. fixes #1943