This commit is contained in:
James Brooks
2015-12-16 18:02:04 +00:00
parent 5f2e2d5925
commit b9b282ba7b
2 changed files with 3 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ class AppComposer
$view->withAppGraphs(Setting::get('display_graphs'));
$view->withAppLocale(Setting::get('app_locale'));
$view->withAppName(Setting::get('app_name'));
$view->withAppStylesheet(Setting::get('app_stylesheet'));
$view->withAppStylesheet(Setting::get('stylesheet'));
$view->withAppUrl(Config::get('app.url'));
$view->withShowSupport(Setting::get('show_support'));
}

View File

@@ -44,9 +44,9 @@
@include('partials.crowdin')
@if($stylesheet = $app_stylesheet)
@if($app_stylesheet)
<style type="text/css">
{!! $stylesheet !!}
{!! $app_stylesheet !!}
</style>
@endif