Skip to content

Commit

Permalink
Change method name to setDocumentHeadData. Thanks @Quy
Browse files Browse the repository at this point in the history
  • Loading branch information
joomdonation committed Jan 2, 2018
1 parent 16c0047 commit 13d9601
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libraries/src/MVC/View/CategoriesView.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,6 @@ protected function prepareDocument()
$this->params->def('page_heading', \JText::_($this->pageHeading));
}

$this->setDocumentHeadDatas();
$this->setDocumentHeadData();
}
}
2 changes: 1 addition & 1 deletion libraries/src/MVC/View/CategoryView.php
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ protected function prepareDocument()
$this->params->def('page_heading', \JText::_($this->defaultPageTitle));
}

$this->setDocumentHeadDatas();
$this->setDocumentHeadData();
}

/**
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/MVC/View/HtmlView.php
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ public function setDocumentTitle($title)
*
* @since __DEPLOY_VERSION__
*/
protected function setDocumentHeadDatas()
protected function setDocumentHeadData()
{
if (isset($this->params) && $this->params instanceof Registry)
{
Expand Down

0 comments on commit 13d9601

Please sign in to comment.