Skip Menu |

This queue is for tickets about the HTML-FormFu CPAN distribution.

Report information
The Basics
Id: 50662
Status: resolved
Priority: 0/
Queue: HTML-FormFu

People
Owner: Nobody in particular
Requestors: pause [...] datademons.com
Cc:
AdminCc:

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



Subject: Object-oriented code called procedurally.
Date: Mon, 19 Oct 2009 16:21:51 -0400 (EDT)
To: bug-HTML-FormFu [...] rt.cpan.org
From: Justin W <pause [...] datademons.com>
On line 208 of HTML::FormFu::Element::Date's pm file, is the following line: _build_month_list($self); Which should presumably be: $self->_build_month_list() for those of us who want to subclass ::Date's _build_month_list() subroutine. Justin
methods/subroutines named with a leading underscore are private, and shouldn't be accessed by any non-core code. The list of month names can be set by: $date->month->{names} = @months