Hey everyone, we updated the RC3 to 2.0.1 N version and after the install we found the next error :
Fatal error: Call to a member function getListFooter() on a non-object in /home/xxxxx/public_html/administrator/components/com_virtuemart/views/currency/tmpl/default.php on line 129
After reading and fixing the issue in line, changing this :
$userId = $vendorModel::getUserIdByVendorId($vendorId);
for this:
$userId = vendorModel::getUserIdByVendorId($vendorId);
removing the $, we get the next error :
Parse error: syntax error, unexpected T_PUBLIC in /home/content/94/8495494/html/administrator/components/com_virtuemart/models/user.php on line 862.
What can we do ?