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]
- Prototype mismatch Philip Mak
- Re: Prototype mismatch Joshua Chamas
- Re: Prototype mismatch Philip Mak
- Re: Prototype mismatch Joshua Chamas
- Prototype mismatch Csongor Fagyal
- Re: Prototype mismatch (solved??) Csongor Fagyal
- Re: Prototype mismatch (solved??) Josh Chamas
- Re: Prototype mismatch (solved??) Csongor Fagyal