Solucionado!!!
He puesto esto:
Código PHP:
Ver originalelse {
$id = $this->_getParam('id', 0);
$data = $this->_getParam('data', 0);
$titol = $this->_getParam('titol', 0);
$textcurt = $this->_getParam('textcurt', 0);
$textllarg= $this->_getParam('textllarg', 0);
if ($id > 0) {
$noticia = Application_Model_DbTable_Noticies::getNoticiaById($id);
'id' => $noticia->getId(),
'data' => $noticia->getData(),
'titol' => $noticia->getTitol(),
'textcurt' => $noticia->getTextCurt(),
'textllarg' => $noticia->getTextLlarg(),
);
$form->setDefaults($date);
$this->view->form = $form;
}