Closed GoogleCodeExporter closed 9 years ago
hey, good catch!
next version will have that fixed! thx
ropu
Original comment by rovagn...@gmail.com
on 3 Oct 2007 at 6:44
patch:
line 77
replace:
foreach($result->giftcert_arr as $curr_gift) {
$xml_data->Push('gift-result');
$xml_data->Element('valid', $curr_gift->gift_valid);
$xml_data->Element('code', $curr_gift->gift_code);
$xml_data->Element('calculated-amount', $curr_gift->gift_amount,
array('currency'=> $this->currency));
$xml_data->Element('message', $curr_gift->gift_message);
$xml_data->Pop('gift-result');
}
with:
foreach($result->giftcert_arr as $curr_gift) {
$xml_data->Push('gift-certificate-result');
$xml_data->Element('valid', $curr_gift->gift_valid);
$xml_data->Element('code', $curr_gift->gift_code);
$xml_data->Element('calculated-amount', $curr_gift->gift_amount,
array('currency'=> $this->currency));
$xml_data->Element('message', $curr_gift->gift_message);
$xml_data->Pop('gift-certificate-result');
}
Original comment by rovagn...@gmail.com
on 3 Oct 2007 at 6:46
This issue is still present in the latest version of the zip.
Original comment by rod...@gmail.com
on 20 May 2008 at 1:32
Original issue reported on code.google.com by
kwie...@gmail.com
on 2 Oct 2007 at 9:30