fixed typo

This commit is contained in:
JT Smith 2004-05-28 04:17:24 +00:00
parent b03d18c2f6
commit f83b2c6086
2 changed files with 2 additions and 1 deletions

View file

@ -2,6 +2,7 @@
- Changed the output of upgrade.pl for better understanding.
- Added a --history option to upgrade.pl that displays the upgrade history
for each site.
- Fixed a typo in User.pm
6.0.3

View file

@ -148,7 +148,7 @@ sub delete {
$authMethod->deleteParams($class->{_userId});
my $sth = WebGUI::SQL->read("select sessionId from userSession where userId=$class->{_userId}");
while (my ($sid) = $sth->array) {
WebGUI::Sesssion::end($sid);
WebGUI::Session::end($sid);
}
$sth->finish;
}