Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 1.5.3, 1.6.0
-
Fix Version/s: 1.6.2
-
Component/s: Zend_Db_Table
-
Labels:None
-
Fix Version Priority:Should Have
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'); }
Solved in SVN r11411