fixed API method setCallable to work properly. It wasn't setting the class variable properly

This commit is contained in:
Frank Dillon 2007-02-22 01:47:36 +00:00
parent 9e3d3be4e0
commit 660868a0b3

View file

@ -730,6 +730,7 @@ sub setCallable {
my $self = shift;
my @callable = @{$self->{callable}};
@callable = (@callable,@{$_[0]});
$self->{callable} = \@callable;
}
#-------------------------------------------------------------------