From 660868a0b37143aef2c49388d75c46b137fd2292 Mon Sep 17 00:00:00 2001 From: Frank Dillon Date: Thu, 22 Feb 2007 01:47:36 +0000 Subject: [PATCH] fixed API method setCallable to work properly. It wasn't setting the class variable properly --- lib/WebGUI/Auth.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/WebGUI/Auth.pm b/lib/WebGUI/Auth.pm index fd365ed16..282686a17 100644 --- a/lib/WebGUI/Auth.pm +++ b/lib/WebGUI/Auth.pm @@ -730,6 +730,7 @@ sub setCallable { my $self = shift; my @callable = @{$self->{callable}}; @callable = (@callable,@{$_[0]}); + $self->{callable} = \@callable; } #-------------------------------------------------------------------