This queue is for tickets about the GDGraph CPAN distribution.
Maintainer(s)' notes
There are plenty of good ideas of what people can do published here on the queue. Turning a patch from the tracker into a pull request is not one of them. In order to get maintainers' attention way more quickier, PR should have at least a sample included. We know it's hard to test images generating software, but it doesn't mean we can not test numbers produced by intermediate algorithms used to generate these images, so either a test or a sample.
Id: |
11631 |
Status: |
resolved |
Priority: |
0/
|
Queue: |
GDGraph
|
Owner: |
bwarfield [...] cpan.org
|
Requestors: |
tstock [...] tiago.com
|
Cc: |
|
AdminCc: |
|
|
Severity: |
Normal |
Broken in: |
1.43 |
Fixed in: |
1.4305 |
|
Tue Feb 22 23:39:24 2005
Guest - Ticket created
In the POD "USAGE" section of Graph.pm, the example for the set() method starts on the object $graph, but if it fails it tries to get the error() method from a $my_graph object.
$graph->set(
# lots of stuff
) or die $my_graph->error;
replace with:
$graph->set(
# lots of stuff
) or die $graph->error;
Sat Feb 11 19:18:03 2006
bwarfield [...] cpan.org - Status changed from 'new' to 'resolved'
Sat Feb 11 19:18:04 2006
bwarfield [...] cpan.org - Given to BWARFIELD