Skip Menu |

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

Report information
The Basics
Id: 38294
Status: new
Priority: 0/
Queue: Flickr-Tools

People
Owner: Nobody in particular
Requestors: nfmnunes [...] cpan.org
Cc:
AdminCc:

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



Subject: Bug on the documentation of Flickr::Photo
Found out following in Flickr::Photo doc: === use Flickr::Photo; my $photo = Flickr::Photo->new($flickr_api_key); if ($photo->id({id => 12345678}) { my $owner = $photo->owner; my $title = $photo->title; } === Closing bracket for 'if' is not present. It should have been === if ($photo->id({id => 12345678})) { ===