VirtueMart Forum

VirtueMart 2 + 3 + 4 => Virtuemart Development and bug reports => Topic started by: Studio 42 on August 27, 2018, 01:04:02 AM

Title: Bug to fix.
Post by: Studio 42 on August 27, 2018, 01:04:02 AM
Can someone in the dev team update the code in the file JOOMLAROOT/administrator/components/com_virtuemart/models/customfields.php line 1076
Because the code add a PHP error each time in log when the  $datas['field'] is empty but set(eg. on cloning).
if (array_key_exists('field', $datas)) {
To
if (!empty( $datas['field'])) {
This is the case on cloning(and perhaps on save) but is nt visible because Virtuemart redirect.
But i have in some shop plenty of errors because this when i enable php error log file.
Title: Re: Bug to fix.
Post by: Milbo on September 04, 2018, 18:53:13 PM
Thx, done