From 2b9e969b952181b45a59f36d3435bbc63052bc2e Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Tue, 4 Dec 2018 09:28:24 +1030 Subject: [PATCH] Fix empty meta description tag. Fixes #1677 --- framework/core/src/Frontend/Content/Meta.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/src/Frontend/Content/Meta.php b/framework/core/src/Frontend/Content/Meta.php index 5ad887457..58c237684 100644 --- a/framework/core/src/Frontend/Content/Meta.php +++ b/framework/core/src/Frontend/Content/Meta.php @@ -28,7 +28,7 @@ class Meta $meta = [ 'viewport' => 'width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1', - 'description' => array_get($forumApiDocument, 'data.attributes.forumDescription'), + 'description' => array_get($forumApiDocument, 'data.attributes.description'), 'theme-color' => array_get($forumApiDocument, 'data.attributes.themePrimaryColor') ];