Exposing my ignorance, wanting help with use!

Matt Wilson codebrewery at gmail.com
Wed Feb 14 14:52:38 GMT 2007


On 2/14/07, Peter Hickman <peter.hickman at semantico.com> wrote:
>         eval {
>             require $class;
>             $self->{dispatcher}->add_dispatcher( $handler,
> $class->new($config) );
>         };

Try:

  eval "require $class";

rather than

  require $class;


More information about the london.pm mailing list