Reputation: 337
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
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