From d384f42da059e73da4f13ab4bb9790eea3117367 Mon Sep 17 00:00:00 2001 From: tomas Date: Sat, 18 Dec 2004 01:11:15 +0000 Subject: [PATCH] deleteData() corrected --- livesupport/modules/alib/var/alib.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/livesupport/modules/alib/var/alib.php b/livesupport/modules/alib/var/alib.php index 4007bc617..0997e3d9e 100644 --- a/livesupport/modules/alib/var/alib.php +++ b/livesupport/modules/alib/var/alib.php @@ -23,7 +23,7 @@ Author : $Author: tomas $ - Version : $Revision: 1.4 $ + Version : $Revision: 1.5 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/alib/var/alib.php,v $ ------------------------------------------------------------------------------*/ @@ -37,7 +37,7 @@ define('ALIBERR_NOTEXISTS', 31); * authentication/authorization class * * @author $Author: tomas $ - * @version $Revision: 1.4 $ + * @version $Revision: 1.5 $ * @see Subjects * @see GreenBox */ @@ -407,6 +407,7 @@ class Alib extends Subjects{ function deleteData() { $this->dbc->query("DELETE FROM {$this->permTable}"); + $this->dbc->query("DELETE FROM {$this->sessTable}"); parent::deleteData(); } /**