ZF-9702: createRow() with defaultSource = Zend_Db_Table::DEFAULT_DB sets default to NULL although string(0) "" is real default
Description
See file Zend/Db/Table/Abstract.php, @version $Id: Abstract.php 21079 2010-02-18 18:15:49Z tech13 $
In line 1422: if (($metadata['DEFAULT'] != null) &&
but it should be: if (($metadata['DEFAULT'] !== null) &&
kind regards, Stephan Nachtsheim
Comments
No comments to display