diff --git a/framework/core/src/Forum/Actions/IndexAction.php b/framework/core/src/Forum/Actions/IndexAction.php index cc3529535..914c747b9 100644 --- a/framework/core/src/Forum/Actions/IndexAction.php +++ b/framework/core/src/Forum/Actions/IndexAction.php @@ -37,7 +37,7 @@ class IndexAction extends HtmlAction public function render(Request $request, $params = []) { $config = $this->database->table('config') - ->whereIn('key', ['base_url', 'api_url', 'forum_title', 'welcome_title', 'welcome_message']) + ->whereIn('key', ['base_url', 'api_url', 'forum_title', 'welcome_title', 'welcome_message', 'theme_primary_color']) ->lists('value', 'key'); $session = []; $alert = $this->session->get('alert'); diff --git a/framework/core/views/index.blade.php b/framework/core/views/index.blade.php index d91108cdc..c7bd6af2b 100644 --- a/framework/core/views/index.blade.php +++ b/framework/core/views/index.blade.php @@ -6,6 +6,10 @@