Skip to content

Commit

Permalink
fix: add missing parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
josegonzalez committed Jun 25, 2017
1 parent 5ab347d commit ee76a64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/View/UIViewTrait.php
Expand Up @@ -33,7 +33,7 @@ public function initializeUI(array $options = [])
$this->loadHelper('Form', ['className' => 'BootstrapUI.Form']);
$this->loadHelper('Flash', ['className' => 'BootstrapUI.Flash']);
$this->loadHelper('Paginator', ['className' => 'BootstrapUI.Paginator']);
if (class_exists('\Cake\View\Helper\BreadcrumbsHelper') {
if (class_exists('\Cake\View\Helper\BreadcrumbsHelper')) {
$this->loadHelper('Breadcrumbs', ['className' => 'BootstrapUI.Breadcrumbs']);
}
}
Expand Down

0 comments on commit ee76a64

Please sign in to comment.