Skip Menu |

This queue is for tickets about the Flickr-Simple2 CPAN distribution.

Report information
The Basics
Id: 48480
Status: resolved
Priority: 0/
Queue: Flickr-Simple2

People
Owner: jason [...] froebe.net
Requestors: matt.follett [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.03
Fixed in: (no value)



Subject: get_user_info expects wrong data
The get_user_info documentation says that it expects an NSID as the second parameter. However, it attempts to use that NSID as a hash reference on line 578. This breaks several things. I've submitted a patch as an example of the necessary change, but I haven't run it against your tests.
Subject: patch.txt
575c575 < my $user_id = shift; --- > my $user = shift; 579c579 < { user_id => $user_id }, --- > { user_id => $user->{id} },
On Thu Aug 06 00:34:13 2009, mfollett wrote: Show quoted text
> The get_user_info documentation says that it expects an NSID as the > second parameter. > However, it attempts to use that NSID as a hash reference on line 578. > This breaks several > things. I've submitted a patch as an example of the necessary change, > but I haven't run it > against your tests.
sorry for the late reply. This is fixed in v0.04 which I'm hoping to release this weekend or next week at the latest jason