Skip to content

Commit

Permalink
Use getPageTitle instead of getTitle
Browse files Browse the repository at this point in the history
  • Loading branch information
nbdd0121 committed Apr 5, 2020
1 parent ad49482 commit 406b4fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions special/Manage.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ private function showForm() {

// This is essential as we need to submit the form to this page
$title = parent::getTitleFor('FlowThreadManage');
$html = \Html::hidden('title', $this->getTitle());
$html = \Html::hidden('title', $this->getPageTitle());

$html .= $this->getTitleInput($this->page) . "\n";
$html .= $this->getUserInput($this->user) . "\n";
Expand Down Expand Up @@ -230,7 +230,7 @@ private function getLimitLinks() {

private function getQueryLink($msg, $query, $id = false) {
return \Linker::linkKnown(
$this->getTitle(),
$this->getPageTitle(),
$msg,
['id' => $id],
$query
Expand Down

0 comments on commit 406b4fc

Please sign in to comment.