change the
$this->data
to
$this->params['url']
?
So my edit post would be
function add() {
if (!empty($this->params['url'])) {
$this->Post->create();
if ($this->Post->save($this->params['url'])) {
$this->Session->setFlash(__('The post has been saved', true));
$this->redirect(array('action' => 'index'));
} else {
$this->Session->setFlash(__('The post could not be saved. Please,
try again.', true));
}
}
$users = $this->Post->User->find('list');
$this->set(compact('users'));
}
? I'll go and try it...
--
Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org
Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions.
To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php
No comments:
Post a Comment