ZF-4272: read-only flag has no effect in delete method
Description
In Zend_Db_Table_Row you can set the read-only flag When you call save method there is an exception but in delete method there is no such warning
There shoud be
if ($this->_readOnly === true) {
require_once 'Zend/Db/Table/Row/Exception.php';
throw new Zend_Db_Table_Row_Exception('This row has been marked read-only');
}
Comments
Posted by old of Satoru Yoshida (yoshida@zend.co.jp) on 2008-09-14T19:34:42.000+0000
Solved in SVN r11411
Posted by old of Satoru Yoshida (yoshida@zend.co.jp) on 2008-10-09T20:54:11.000+0000
This issue will be solve in version 1.6.2 .
Zend/Db/Table/Row/Abstract.php is modified.