|
|
|
@ -188,7 +188,7 @@ class Page
@@ -188,7 +188,7 @@ class Page
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
// Refresh header by new title if current page is active |
|
|
|
|
if ($this == $this->container->tab->getPage()) |
|
|
|
|
if ($this === $this->container->tab->getPage()) |
|
|
|
|
{ |
|
|
|
|
$this->container->browser->header->setTitle( |
|
|
|
|
$this->title->getValue(), |
|
|
|
@ -222,7 +222,7 @@ class Page
@@ -222,7 +222,7 @@ class Page
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
// Refresh header by new title if current page is active |
|
|
|
|
if ($this == $this->container->tab->getPage()) |
|
|
|
|
if ($this === $this->container->tab->getPage()) |
|
|
|
|
{ |
|
|
|
|
$this->container->browser->header->setTitle( |
|
|
|
|
$this->title->getValue(), |
|
|
|
@ -255,7 +255,7 @@ class Page
@@ -255,7 +255,7 @@ class Page
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
// Refresh header by new title if current page is active |
|
|
|
|
if ($this == $this->container->tab->getPage()) |
|
|
|
|
if ($this === $this->container->tab->getPage()) |
|
|
|
|
{ |
|
|
|
|
$this->container->browser->header->setTitle( |
|
|
|
|
$this->title->getValue() |
|
|
|
|