From 3b57704a279ec409417a251c5850938422176831 Mon Sep 17 00:00:00 2001 From: mark_story Date: Sat, 17 Dec 2011 22:14:58 -0500 Subject: [PATCH] Update doc blocks. --- lib/Cake/View/View.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/Cake/View/View.php b/lib/Cake/View/View.php index f9ca56e5cb8..89fcef6536f 100644 --- a/lib/Cake/View/View.php +++ b/lib/Cake/View/View.php @@ -28,8 +28,7 @@ * but can also take the form of JSON, XML, PDF's or streaming files. * * CakePHP uses a two-step-view pattern. This means that the view content is rendered first, - * and then inserted into the selected layout. A special `$content_for_layout` variable is available - * in the layout, and it contains the rendered view. This also means you can pass data from the view to the + * and then inserted into the selected layout. This also means you can pass data from the view to the * layout using `$this->set()` * * @package Cake.View @@ -428,7 +427,7 @@ public function render($view = null, $layout = null) { * Use the block features instead. `meta`, `css` and `script` will be populated * by the matching methods on HtmlHelper. * - `$title_for_layout` is deprecated and will be removed in CakePHP 3.0 - * - `$content_for_layout` is deprecated and will be removed in CakePHP 3.0. + * - `$content_for_layout` is deprecated and will be removed in CakePHP 3.0. * Use the `content` block instead. * * @param string $content Content to render in a view, wrapped by the surrounding layout.