|
Last updated: 06/26/2009
I think this has to do with php
and global variables, but I'm not sure.
In any case, the fix that I used is in the globals.php
. There's a branch like this:
// ###################### update cart ####################### if ($action == "updatecart") {
In there you will see a line:
$tmp = $item[$i];
Comment that line out, and put in this line:
$tmp = $_REQUEST['item'][$i];
That's the actual quantity coming in from the user form, which the original line was supposed to be getting. This was on 3.5 and 3.5.1 installs.
blog comments powered by
|