-
- lefrancaiz

-
Total Posts: 13
Joined: 2008-04-01
|
Answering my own question here just in case it helps anyone in the future.
It seems there is a bug in the file app/code/core/Mage/Customer/Model/Entity
The function _getDefaultAttributes() is missing the ‘is_active’ and so it is not saving properly.
It should be:
protected function _getDefaultAttributes() { return array( 'entity_type_id', 'attribute_set_id', 'created_at', 'updated_at', 'increment_id', 'store_id', 'website_id', 'is_active' ); }
|