Skip to content

Commit

Permalink
Merge pull request #236 from FriendsOfCake/230-check-disable-sidebar
Browse files Browse the repository at this point in the history
fix: ensure we guard against incomplete installation
  • Loading branch information
ADmad authored Feb 5, 2018
2 parents 3787db0 + ea7bc18 commit 2f69983
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Template/Layout/default.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

<div class="container-fluid">
<div class="row">
<?php if ($disableSidebar) : ?>
<?php if (!empty($disableSidebar)) : ?>
<div class="col-sm-12">
<?= $this->Flash->render(); ?>
<?= $this->element('breadcrumbs') ?>
Expand Down

0 comments on commit 2f69983

Please sign in to comment.