Skip to content

Commit

Permalink
fix: ensure we guard against incomplete installation
Browse files Browse the repository at this point in the history
Closes #230
  • Loading branch information
josegonzalez committed Feb 5, 2018
1 parent acf81af commit ea7bc18
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 ea7bc18

Please sign in to comment.