#7004 closed defect (bug) (duplicate)
the_category ignores seperator
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | Priority: | high | |
| Severity: | major | Version: | |
| Component: | General | Keywords: | the_category |
| Focuses: | Cc: |
Description
function get_the_category_list ===in category-template.php
line 151
$thelist .= get_category_parents($category->parent, TRUE);
misses $separator argument,so when get_category_parents gets called function get_category_parents sets default value which is '/' ;
in category-template.php line 151 should be :
$thelist .= get_category_parents($category->parent, TRUE, $separator);
Change History (3)
Note: See
TracTickets for help on using
tickets.
sorry duplicated
http://trac.wordpress.org/ticket/7005