Skip to content

Commit

Permalink
Possible fix for #1296? Can't reproduce locally
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe committed Oct 28, 2015
1 parent 76968f7 commit e0fccc8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/views/backend/layouts/default.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<!-- global header javascripts -->
<script src="{{ asset('assets/js/jquery-latest.js') }}"></script>
<script src="{{ asset('assets/js/bootstrap.min.js') }}"></script>

<script>
window.snipeit = {
settings: {
Expand Down Expand Up @@ -108,12 +108,12 @@
</button>


@if (Setting::getSettings()->brand === 3)
@if (Setting::getSettings()->brand == '3')
<a class="navbar-brand" href="{{ Config::get('app.url') }}" style="padding: 5px;">
<img src="{{ Config::get('app.url') }}/uploads/{{{ Setting::getSettings()->logo }}}">
{{{ Setting::getSettings()->site_name }}}
</a>
@elseif (Setting::getSettings()->brand === 2)
@elseif (Setting::getSettings()->brand == '2')
<a class="navbar-brand" href="{{ Config::get('app.url') }}" style="padding: 5px;">
<img src="{{ Config::get('app.url') }}/uploads/{{{ Setting::getSettings()->logo }}}">
</a>
Expand Down

0 comments on commit e0fccc8

Please sign in to comment.