Index: trunk/phase3/includes/CategoryPage.php |
— | — | @@ -236,7 +236,7 @@ |
237 | 237 | $r = ''; |
238 | 238 | if( count( $this->children ) > 0 ) { |
239 | 239 | # Showing subcategories |
240 | | - $r .= "<div id=\"subcategories\">\n"; |
| 240 | + $r .= "<div id=\"mw-subcategories\">\n"; |
241 | 241 | $r .= '<h2>' . wfMsg( 'subcategories' ) . "</h2>\n"; |
242 | 242 | $r .= wfMsgExt( 'subcategorycount', array( 'parse' ), count( $this->children) ); |
243 | 243 | $r .= $this->formatList( $this->children, $this->children_start_char ); |
— | — | @@ -247,7 +247,7 @@ |
248 | 248 | |
249 | 249 | function getPagesSection() { |
250 | 250 | $ti = htmlspecialchars( $this->title->getText() ); |
251 | | - $r = "<div id=\"pages\">\n"; |
| 251 | + $r = "<div id=\"mw-pages\">\n"; |
252 | 252 | $r .= '<h2>' . wfMsg( 'category_header', $ti ) . "</h2>\n"; |
253 | 253 | $r .= wfMsgExt( 'categoryarticlecount', array( 'parse' ), count( $this->articles) ); |
254 | 254 | $r .= $this->formatList( $this->articles, $this->articles_start_char ); |