Skip to content

Version 1.7.2 - Stable

Compare
Choose a tag to compare
@phproberto phproberto released this 10 Nov 01:06

How to install / upgrade

Download joomla-entity-v1.7.2.zip an install through Joomla! Extension Manager.

Bug fixes

Data lost when saving entity

Updating an entity with something like:

$category = new Category;
$category->bind(['id' => 23, 'title' => 'My Category', 'extension' => 'com_content']);
$category->save();

Was overwriting any data already saved in Category 23. Now all the entities load previous data before saving them with the new data.