News:

Looking for documentation? Take a look on our wiki

Main Menu

VM 2.6.0 helpers/cart.php is this the correct ?

Started by AH, April 07, 2014, 18:56:53 PM

Previous topic - Next topic

AH

Looking at the new code


if (empty($cart_virtuemart_product_id)) $cart_virtuemart_product_id = vRequest::getString('cart_virtuemart_product_id');
if ($quantity === null) $quantity = vRequest::getInt('quantity');


Should it not use the  vmrequest function ??


if (empty($cart_virtuemart_product_id)) $cart_virtuemart_product_id = vmRequest::getString('cart_virtuemart_product_id');
if ($quantity === null) $quantity = vmRequest::getInt('quantity');
Regards
A

Joomla 3.10.11
php 8.0

Milbo

vmRequest got renamed to vRequest. Thats all.
Should I fix your bug, please support the VirtueMart project and become a member
______________________________________
Extensions approved by the core team: http://extensions.virtuemart.net/

AH

Milbo thanks for the clarification,  I can see that it has been renamed in other files as well. 
Regards
A

Joomla 3.10.11
php 8.0