We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbb6fee commit 393bf1fCopy full SHA for 393bf1f
1 file changed
src/CmsSeoComponent.php
@@ -568,7 +568,10 @@ public function bootstrap($application)
568
569
$application->view->on(View::EVENT_BEGIN_PAGE, function ($e) {
570
if ($this->title_append) {
571
- \Yii::$app->view->title = \Yii::$app->view->title.$this->title_append;
+ if (!BackendComponent::getCurrent()) {
572
+ \Yii::$app->view->title = \Yii::$app->view->title.$this->title_append;
573
+ }
574
+
575
}
576
});
577
0 commit comments