more bug fixes

This commit is contained in:
JT Smith 2006-01-14 23:31:49 +00:00
parent 5a58632ee0
commit 07c7cf6098
2 changed files with 3 additions and 2 deletions

View file

@ -622,7 +622,8 @@ A reference to the current session.
sub new {
my $class = shift;
bless {_session=>shift}, $class;
my $session = shift;
bless {_session=>$session}, $class;
}
#-------------------------------------------------------------------