Index: trunk/phase3/includes/CategoryPage.php |
— | — | @@ -189,7 +189,7 @@ |
190 | 190 | */ |
191 | 191 | function addPage( $title, $sortkey, $pageLength, $isRedirect = false ) { |
192 | 192 | global $wgContLang; |
193 | | - $titletext = $wgContLang->convert($title); |
| 193 | + $titletext = $wgContLang->convert( $title->getPrefixedText() ); |
194 | 194 | $this->articles[] = $isRedirect |
195 | 195 | ? '<span class="redirect-in-category">' . $this->getSkin()->makeKnownLinkObj( $title, $titletext ) . '</span>' |
196 | 196 | : $this->getSkin()->makeSizeLinkObj( $pageLength, $title, $titletext ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -112,6 +112,7 @@ |
113 | 113 | * Add 'change tagging' facility, where changes can be tagged internally with |
114 | 114 | certain designations, which are displayed on various summaries of changes, and |
115 | 115 | the entries can be styled with CSS. |
| 116 | +* (bug 17207) Fix regression breaking category page display on PHP 5.1 |
116 | 117 | |
117 | 118 | == API changes in 1.15 == |
118 | 119 | * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions |