Merge "Change special page group for BookSources"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Fri, 10 Jan 2014 21:26:40 +0000 (21:26 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Fri, 10 Jan 2014 21:26:40 +0000 (21:26 +0000)
1  2 
includes/specials/SpecialBooksources.php

@@@ -120,7 -120,7 +120,7 @@@ class SpecialBookSources extends Specia
                $form = Html::openElement( 'fieldset' ) . "\n";
                $form .= Html::element( 'legend', array(), $this->msg( 'booksources-search-legend' )->text() ) . "\n";
                $form .= Html::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript ) ) . "\n";
 -              $form .= Html::hidden( 'title', $this->getTitle()->getPrefixedText() ) . "\n";
 +              $form .= Html::hidden( 'title', $this->getPageTitle()->getPrefixedText() ) . "\n";
                $form .= '<p>' . Xml::inputLabel( $this->msg( 'booksources-isbn' )->text(), 'isbn', 'isbn', 20, $this->isbn, array( 'autofocus' => true ) );
                $form .= '&#160;' . Xml::submitButton( $this->msg( 'booksources-go' )->text() ) . "</p>\n";
                $form .= Html::closeElement( 'form' ) . "\n";
        }
  
        protected function getGroupName() {
-               return 'other';
+               return 'wiki';
        }
  }