Merge "backport release notes from Ia6efdf931b0b6be7556fc16c040aa7493845cdfc"
[lhc/web/wiklou.git] / includes / specials / SpecialPagesWithProp.php
index 189798d..dc6464a 100644 (file)
@@ -70,7 +70,7 @@ class SpecialPagesWithProp extends QueryPage {
                        ),
                ), $this->getContext() );
                $form->setMethod( 'get' );
-               $form->setAction( $this->getTitle()->getFullUrl() );
+               $form->setAction( $this->getTitle()->getFullURL() );
                $form->setSubmitCallback( array( $this, 'onSubmit' ) );
                $form->setWrapperLegend( $this->msg( 'pageswithprop-legend' ) );
                $form->addHeaderText( $this->msg( 'pageswithprop-text' )->parseAsBlock() );
@@ -131,4 +131,8 @@ class SpecialPagesWithProp extends QueryPage {
                }
                return $ret;
        }
+
+       protected function getGroupName() {
+               return 'pages';
+       }
 }