Thanks for getting back to me Miles!
They do indeed blackhole (which sends the client a 404). There is one
'odd' field on my form ('text') below, which I'm showing using
FCKEditor. I tried your suggestion, and I also tried removing it
completely, but I still get the same issue. Can you see anything else
in my form that might cause issues? Am I right in thinking that I
shouldn't necessarily need to add anything to my controller's
beforeFilter?
<?php echo $form->create('Site');?>
<fieldset>
<legend><?php __('Edit Site');?></legend>
<?php
echo $form->input('Site.id');
echo $form->input('Site.parent_content_item_id');
echo $form->hidden('Site.created_by_user_id');
echo $form->hidden('Site.modified_by_user_id', array('value'
=> $authenticatedUser['User']['id']));
echo $form->input('Site.title');
echo $form->input('Site.description');
echo $fck->fckeditor(array('Site', 'text'), $form, $html-
>base, $this->data['Site']['text']);
echo $form->hidden('Address.0.id');
echo $form->hidden('Address.0.type', array('value' =>
'Site'));
echo $form->input('Address.0.address_1');
echo $form->input('Address.0.address_2');
echo $form->input('Address.0.town');
echo $form->input('Address.0.county');
echo $form->input('Address.0.postcode');
echo $form->input('Address.0.telephone');
echo $form->input('Address.0.fax');
echo $form->input('Address.0.email');
echo $form->input('Site.url', array('disabled' =>
'disabled'));
echo $form->input('Site.meta_keywords');
echo $form->input('Site.meta_description');
?>
</fieldset>
<?php echo $form->end('Submit');?>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---