View Single Post
  #5  
Old 03-20-2007, 12:49 PM
 
inebriate inebriate is offline
 

eXpert
  
Join Date: May 2006
Posts: 301
 

Default Re: Last Item Added in mini-cart

i take it that you are using the minicart mod in the completed mod section...what you want is array_reverse instead of array_flip

in minicart.php,
replace
Code:
$smarty->assign("minicart_contents", $cart["products"]);
with
Code:
$smarty->assign("minicart_contents", array_reverse($cart["products"]));
__________________
x-cart pro 4.0.18
linux
www.fabric8d.com (currently undergoing construction)
Reply With Quote