mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Updating test view to use correct helper syntax.
This commit is contained in:
parent
6d8c761f2f
commit
19e301c867
1 changed files with 5 additions and 5 deletions
|
@ -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>
|
Loading…
Reference in a new issue