Aex Sun
Aex Sun

Reputation: 337

Remove the mysql output from the Cakephp 2.5 default layout

Is there anyway to remove the mysql output from the cakephp default layout without the need to change the complete default layout?

Upvotes: 0

Views: 59

Answers (1)

Jelle Keizer
Jelle Keizer

Reputation: 721

At the bottom of default.ctp there is a line

<?php echo $this->element('sql_dump'); ?>

change it to

<?php //echo $this->element('sql_dump'); ?>

Upvotes: 1

Related Questions