diff --git a/administrator/components/com_content/models/forms/article.xml b/administrator/components/com_content/models/forms/article.xml
index 796fb16005472..55628621f3c8f 100644
--- a/administrator/components/com_content/models/forms/article.xml
+++ b/administrator/components/com_content/models/forms/article.xml
@@ -414,6 +414,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);