Home » Web Services » Services_Amazon » Bug #5670
doMultiOperation() missing a 2
Details
| Submitted | 2005-10-12 16:16 UTC |
|---|---|
| From | seth at pricepages dot org |
| Status | Bogus |
| Package | Services_Amazon |
| PHP Version | Irrelevant |
| OS | Mac |
| Roadmaps | (Not assigned) |
Comments
[2005-10-12 16:16 UTC] seth at pricepages dot org
Description:
------------
I think that you forgot to flip a 1 to a 2 in
doMultiOperation(). Mores specifically, shouldn't:
foreach ($params2 as $k => $v) {
$params[$operation2 . '.1.' . $k] = $v;
}
Be:
foreach ($params2 as $k => $v) {
$params[$operation2 . '.2.' . $k] = $v;
}
[2005-10-12 16:19 UTC] seth at pricepages dot org
Nope, I'm a fool. Just ReadTFM
[2005-10-12 16:42 UTC] ttsuruoka at php dot net
Yes, this is not a bug. :)
Thanks.