#1943 closed defect (bug) (fixed)
function get_the_author_description() is not working properly
| Reported by: | tinyau | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Template | Version: | 1.6 |
| Severity: | normal | Keywords: | |
| Cc: | Focuses: |
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.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
(In [3205]) s/user_description/description/. Props tinyau. fixes #1943