[Phplib-commit] CVS: php-lib-stable/pages/admin view_sessions.php3,1.1.1.1,1.2
Brought to you by:
nhruby,
richardarcher
From: Chris J. <ch...@us...> - 2002-09-25 17:56:39
|
Update of /cvsroot/phplib/php-lib-stable/pages/admin In directory usw-pr-cvs1:/tmp/cvs-serv24810 Modified Files: view_sessions.php3 Log Message: Fix typo in delete query to use the SID value, not the key name. Index: view_sessions.php3 =================================================================== RCS file: /cvsroot/phplib/php-lib-stable/pages/admin/view_sessions.php3,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** view_sessions.php3 17 Apr 2000 16:40:08 -0000 1.1.1.1 --- view_sessions.php3 25 Sep 2002 17:56:36 -0000 1.2 *************** *** 51,55 **** $sess->that->database_table, $sess->name, ! $k); $db->query($query); $sum += $db->affected_rows(); --- 51,55 ---- $sess->that->database_table, $sess->name, ! $v); $db->query($query); $sum += $db->affected_rows(); |