VirtueMart Forum

VirtueMart 2 + 3 + 4 => Language/Translations => Topic started by: razor7 on October 10, 2012, 18:08:34 PM

Title: [BUG] No Translateable Custom Field Values Strings VM 2.0.12b
Post by: razor7 on October 10, 2012, 18:08:34 PM
This should be fixed since Vm 2.0.6, but testing VM 2.0.12b and there is a regression!.

Line 872 of customfields.php model file should be
$productCustom->text = JText::_ ($productCustom->custom_value) . ' ' . $price;

Actual bug, preventing custom fields translateable values
$productCustom->text = $productCustom->custom_value . ' ' . $price;