Merge "Special:PageLanguage: Show log extract only when title known"

This commit is contained in:
jenkins-bot 2015-05-23 20:57:19 +00:00 committed by Gerrit Code Review
commit 2871ecf3aa

View file

@ -87,7 +87,10 @@ class SpecialPageLanguage extends FormSpecialPage {
}
protected function postText() {
return $this->showLogFragment( $this->par );
if ( $this->par ) {
return $this->showLogFragment( $this->par );
}
return '';
}
protected function getDisplayFormat() {