PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » Web Services » Services_Amazon » Bug #5670

doMultiOperation() missing a 2

Details

Submitted2005-10-12 16:16 UTC
Fromseth at pricepages dot org
StatusBogus
PackageServices_Amazon
PHP VersionIrrelevant
OSMac
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.