So, in
/components/com_phocadownload/views/file/view.html.php
if found this piece of code
Code: Select all
$title = $this->params->get('page_title', '');
if (empty($title)) {
$title = htmlspecialchars_decode($app->getCfg('sitename'));
} else if ($app->getCfg('sitename_pagetitles', 0)) {
$title = JText::sprintf('JPAGETITLE', htmlspecialchars_decode($app->getCfg('sitename')), $title);
}
$this->document->setTitle($title);
if (empty($title)) {
$title = $this->item->title;
}
$this->document->setTitle($title);
Second, I could not figure out the source of the title, and just set the second $this->document->setTitle($title); to
Code: Select all
$this->document->setTitle($file->title);