Hi,

I have solved the previoud error, but I am not exactly sure how :-)

I had this in another module:

sub get_language_file {
my ($self, $file) = @_;
my $data = &get_langfile($file);
return $data;
}

Which I have modified as:

sub get_language_file {
my ($self, $file) = @_;

my $data = &get_langfile($file);
my $hack = substr($data,0,length($data));
return $hack;
}


Now everything works. What am I doing _exactly_? :-)

- Cs.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to