Index: trunk/phase3/includes/specials/SpecialStatistics.php |
— | — | @@ -251,7 +251,9 @@ |
252 | 252 | ) |
253 | 253 | ); |
254 | 254 | if( $res->numRows() > 0 ) { |
| 255 | + $text .= Xml::openElement( 'tr' ); |
255 | 256 | $text .= Xml::tags( 'th', array( 'colspan' => '2' ), wfMsgExt( 'statistics-mostpopular', array( 'parseinline' ) ) ); |
| 257 | + $text .= Xml::closeElement( 'tr' ); |
256 | 258 | while( $row = $res->fetchObject() ) { |
257 | 259 | $title = Title::makeTitleSafe( $row->page_namespace, $row->page_title ); |
258 | 260 | if( $title instanceof Title ) { |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -421,6 +421,8 @@ |
422 | 422 | watched page is deleted |
423 | 423 | * (bug 20358) Unprotect tab was missing accesskey; now same as protect tab. |
424 | 424 | * (bug 20317) Cleaned up default main page link accesskey settings |
| 425 | +* (bug 20362) Special:Statistics now produces valid HTML when view counters are |
| 426 | + enabled |
425 | 427 | |
426 | 428 | == API changes in 1.16 == |
427 | 429 | |