How can I set the title_for_layout in the default PagesController?
I cannot set title_for_layout in the PagesController that comes by default with CakePHP 1.3. I am using the following code in the display function: $this->set('title_for_layout','some title'); What am I doing wrong? In your controller, the corresponding value is $this->pageTitle . UPDATE Oops, as noted in the comments, this is the 1.2 solution. 1.3 possibilities (after doing some research) include: Ensuring that $title_for_layout is being echoed in the layout Placing the $this->set() code in the view rather than in the controller If you'd like to mimic the behavior of cake 1.2, you can do the