From f83b2c6086177481c69c26750dc999a72f57109f Mon Sep 17 00:00:00 2001 From: JT Smith Date: Fri, 28 May 2004 04:17:24 +0000 Subject: [PATCH] fixed typo --- docs/changelog/6.x.x.txt | 1 + lib/WebGUI/User.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/changelog/6.x.x.txt b/docs/changelog/6.x.x.txt index 43d03d91b..aee3bc0c2 100644 --- a/docs/changelog/6.x.x.txt +++ b/docs/changelog/6.x.x.txt @@ -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 diff --git a/lib/WebGUI/User.pm b/lib/WebGUI/User.pm index 516ce487e..70ec0dd68 100644 --- a/lib/WebGUI/User.pm +++ b/lib/WebGUI/User.pm @@ -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; }