Skip to content

Commit

Permalink
Updating test view to use correct helper syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Aug 27, 2010
1 parent 6d8c761 commit 19e301c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cake/tests/test_app/views/posts/cache_form.ctp
@@ -1,14 +1,14 @@
<div class="users form">
<cake:nocache>
<?php echo $form->create('User');?>
<?php echo $this->Form->create('User');?>
<fieldset>
<legend><?php echo __('Add User');?></legend>
<?php
echo $form->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');
?>
</fieldset>
<?php echo $form->end('Submit');?>
<?php echo $this->Form->end('Submit');?>
</cake:nocache>
</div>

0 comments on commit 19e301c

Please sign in to comment.