Index: trunk/phase3/includes/CategoryPage.php |
— | — | @@ -162,9 +162,10 @@ |
163 | 163 | */ |
164 | 164 | function addSubcategoryObject( Category $cat, $sortkey, $pageLength ) { |
165 | 165 | // Subcategory; strip the 'Category' namespace from the link text. |
| 166 | + $title = $cat->getTitle(); |
166 | 167 | $this->children[] = $this->getSkin()->link( |
167 | | - $cat->getTitle(), |
168 | | - null, |
| 168 | + $title, |
| 169 | + $title->getText(), |
169 | 170 | array(), |
170 | 171 | array(), |
171 | 172 | array( 'known', 'noclasses' ) |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -469,6 +469,7 @@ |
470 | 470 | * (bug 18372) $wgFileExtensions will now override $wgFileBlacklist |
471 | 471 | * (bug 10871) Javascript and CSS pages in MediaWiki namespace are no longer treated |
472 | 472 | as wikitext on preview. |
| 473 | +* (bug 25512) Subcategory list should not include category prefix for members. |
473 | 474 | |
474 | 475 | === API changes in 1.17 === |
475 | 476 | * (bug 22738) Allow filtering by action type on query=logevent. |