Revert to arbitrarily old point before initial remote branch creation to help clean up
[lhc/web/wiklou.git] / includes / specials / SpecialLog.php
index 8eee22d..177b34d 100644 (file)
@@ -131,7 +131,7 @@ class SpecialLog extends SpecialPage {
 
        private function show( FormOptions $opts, array $extraConds ) {
                # Create a LogPager item to get the results and a LogEventsList item to format them...
-               $loglist = new LogEventsList( $this->getSkin(), $this->getOutput(), LogEventsList::USE_REVDEL_CHECKBOXES );
+               $loglist = new LogEventsList( $this->getSkin(), $this->getOutput(), 0 );
                $pager = new LogPager( $loglist, $opts->getValue( 'type' ), $opts->getValue( 'user' ),
                        $opts->getValue( 'page' ), $opts->getValue( 'pattern' ), $extraConds, $opts->getValue( 'year' ),
                        $opts->getValue( 'month' ), $opts->getValue( 'tagfilter' ) );
@@ -174,7 +174,7 @@ class SpecialLog extends SpecialPage {
                $s .= Html::hidden( 'type', 'logging' ) . "\n";
                $button = Html::element( 'button',
                        array( 'type' => 'submit', 'class' => "deleterevision-log-submit mw-log-deleterevision-button" ),
-                       $this->msg( 'showhideselectedlogentries' )->text()
+                       $this->msg( 'showhideselectedversions' )->text()
                ) . "\n";
                $s .= $button . $formcontents . $button;
                $s .= Html::closeElement( 'form' );