diff --git a/administrator/components/com_content/models/forms/article.xml b/administrator/components/com_content/models/forms/article.xml index e3d3df72a2914..22789775fce66 100644 --- a/administrator/components/com_content/models/forms/article.xml +++ b/administrator/components/com_content/models/forms/article.xml @@ -415,6 +415,11 @@ description="JFIELD_READMORE_DESC" size="25" /> + + query['option'] != 'com_content' || $menu->query['view'] != 'article' || $id != $this->item->id)) { - // If this is not a single article menu item, set the page title to the article title - if ($this->item->title) - { - $title = $this->item->title; - } + // If a browser page title is defined, use that, then fall back to the article title if set, then fall back to the page_title option + $title = $this->item->params->get('article_page_title', $this->item->title ?: $title); $path = array(array('title' => $this->item->title, 'link' => '')); $category = JCategories::getInstance('Content')->get($this->item->catid);