thank you
it's seems to be ok.
i ll read again closure in camel book !

Arnaud


You are creating a closure. Easy to fix:

use My_module;
my $user = My_module->new(ip=>$ENV{'REMOTE_ADDR'},pid=>$$);

&taff2();


Make that:

taff2($user);

sub taff2 {


add this to the beginning of taff2:

my $user = shift;

- Perrin



--
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html



Reply via email to