Skip to content

Commit 0b46308

Browse files
committed
Correcting CSS usage
1 parent b73c634 commit 0b46308

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/controllers/Core_AdminController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ public function postTheme()
734734

735735
if ($input != null) {
736736
$masterLess = base_path() .'/vendor/syntax/core/public/less/master.less';
737-
$masterCss = base_path() .'/vendor/syntax/core/public/css/master.css';#5097b5
737+
$masterCss = public_path() .'/css/master.css';#5097b5
738738

739739
$lines = file($masterLess);
740740

src/views/layouts/default.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
@if (isset($activeUser) && File::exists($activeUser->theme))
1818
{{ HTML::style($activeUser->themeStyle) }}
1919
@else
20-
{{ HTML::style('/css/master3/master.css') }}
20+
{{ HTML::style('/css/master.css') }}
2121
@endif
2222
{{ HTML::style('http://code.jquery.com/ui/1.10.0/themes/base/jquery-ui.css') }}
2323

0 commit comments

Comments
 (0)