1
0
mirror of https://github.com/flarum/core.git synced 2025-08-05 16:07:34 +02:00

Implement Android theme color support

As requested in the forums.
http://updates.html5rocks.com/2014/11/Support-for-theme-color-in-Chrome-39-for-Android
This commit is contained in:
Franz Liedke
2015-06-26 23:11:13 +02:00
parent 150b8d7cd3
commit 64e8a0abf3
2 changed files with 5 additions and 1 deletions

View File

@@ -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');