diff --git a/modules/cms/classes/Meta.php b/modules/cms/classes/Meta.php index bfebf016d..e2fec147d 100644 --- a/modules/cms/classes/Meta.php +++ b/modules/cms/classes/Meta.php @@ -42,7 +42,7 @@ class Meta extends CmsObject $this->content = $this->renderContent(); }); $this->bindEvent('model.afterFetch', function () { - $this->attributes = array_merge($this->parseContent(), $this->attributes); + $this->attributes = array_merge($this->attributes, $this->parseContent()); }); } @@ -82,4 +82,4 @@ class Meta extends CmsObject { return $this->renderContent(); } -} \ No newline at end of file +}