Fixed gh-262 that broke the saving of php values in custom field

This commit is contained in:
2018-04-13 22:06:45 +02:00
parent 04aefa256b
commit a0890ea87f
7 changed files with 23 additions and 46 deletions

View File

@ -1378,6 +1378,11 @@ class ComponentbuilderModelImport_joomla_components extends JModelLegacy
{
unset($item->metakey);
}
// remove not_required
if (isset($item->not_required))
{
unset($item->not_required);
}
// actions to effect all
if (isset($item->asset_id))
{