adding a couple whitespace corrections (trailing tabs, newlines, ..)

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7654 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
DarkAngelBGE 2008-09-24 11:52:29 +00:00
parent 3459fef98f
commit cc425a5e0a
7 changed files with 6 additions and 11 deletions

View file

@ -36,10 +36,10 @@ class TestsAppsPostsController extends AppController {
'Post' => array(
'title' => 'Test article',
'body' => 'Body of article.'
)
)
);
$this->Post->save($data);
$this->set('posts', $this->Post->find('all'));
$this->render('index');
}