diff --git a/cake/tests/test_app/views/posts/cache_form.ctp b/cake/tests/test_app/views/posts/cache_form.ctp index 3dbe361201f..7cf121904f3 100644 --- a/cake/tests/test_app/views/posts/cache_form.ctp +++ b/cake/tests/test_app/views/posts/cache_form.ctp @@ -1,14 +1,14 @@
- create('User');?> + Form->create('User');?>
input('username'); - echo $form->input('email'); - echo $form->input('password'); + echo $this->Form->input('username'); + echo $this->Form->input('email'); + echo $this->Form->input('password'); ?>
- end('Submit');?> + Form->end('Submit');?>
\ No newline at end of file