@@ -, +, @@ required --------- -- will complain about string use with "use strict". This is because it is using the module name, instead of the object instantiated with new(). --- Koha/RecordProcessor/Base.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Koha/RecordProcessor/Base.pm +++ a/Koha/RecordProcessor/Base.pm @@ -98,7 +98,7 @@ sub initialize { my $self = shift; my $params = shift; - #$self->params = $params; + $self->params($params); return $self; } --