Hi Bill, 
I found the reason for the error, it had nothing to do with ZF. I had
extended the Zend_Db_Table::insert() method, but forgotten to add "return",
i.e. I had this:

public function insert(array $data)
{
        ...
        parent::insert($data);
}

When it should have been:

public function insert(array $data)
{
        ...
        return parent::insert($data);
}

Regards, 
Jack
-- 
View this message in context: 
http://www.nabble.com/PHP-bug-when-calling-save%28%29-on-a-newly-created-Zend_Db_Table_Row-tf4201341s16154.html#a12220978
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to