Hi,
when chanching an order status I always obtain this error:
1146 Table 'katuma39_katuma.#__virtuemart_paymentmethods_' doesn't exist SQL=SELECT `#__virtuemart_paymentmethods`.* ,`#__virtuemart_paymentmethods_`.* FROM `#__virtuemart_paymentmethods` INNER JOIN `#__virtuemart_paymentmethods_` using (`virtuemart_paymentmethod_id`) WHERE `#__virtuemart_paymentmethods`.`virtuemart_paymentmethod_id` = "1"
I think the problem is that language is not insert in query (it_it is omitted). Correct query should be:
SELECT `#__virtuemart_paymentmethods`.* ,`#__virtuemart_paymentmethods_it_it`.* FROM `#__virtuemart_paymentmethods` INNER JOIN `#__virtuemart_paymentmethods_it_it` using (`virtuemart_paymentmethod_id`) WHERE `#__virtuemart_paymentmethods`.`virtuemart_paymentmethod_id` = "1"
What can I do?
Many thanks
Best regards,
Maurizio