I have a view that is formed by a layout different from the default one in my project, so it looks like this:
public function init() {
//Colocando o layout default
$this->_helper->layout->setLayout('layout_paginas');
}
But the content of this layout is simply ignored, only the content of the view is loaded, does anyone know what might be happening?
I'm editing here by the following: All actions on this controller work normally, only a specific one does not load the contents of the layout.