Index: trunk/extensions/FlaggedRevs/forms/RevisionReviewForm.php |
— | — | @@ -1027,12 +1027,14 @@ |
1028 | 1028 | } |
1029 | 1029 | |
1030 | 1030 | $list = new RevDel_RevisionList( $thisPage, $oldRev->getTitle(), $ids ); |
| 1031 | + $wgOut->addHtml( '<ul>' ); |
1031 | 1032 | for ( $list->reset(); $list->current(); $list->next() ) { |
1032 | 1033 | $item = $list->current(); |
1033 | 1034 | if ( $item->canView() ) { |
1034 | 1035 | $wgOut->addHTML( $item->getHTML() ); |
1035 | 1036 | } |
1036 | 1037 | } |
| 1038 | + $wgOut->addHtml( '</ul>' ); |
1037 | 1039 | $form = Html::openElement( 'form', |
1038 | 1040 | array( 'method' => 'POST', 'action' => $thisPage->getFullUrl() ) |
1039 | 1041 | ); |