|
From: Paul S. O. <ps...@us...> - 2002-05-17 22:58:22
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv12786/admin
Modified Files:
Tag: phpBB-2_0_0
index.php
Log Message:
Close DB connection for frameset ... overlooked that ... has this been causing the MySQL open connection problems I wonder?
Index: index.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/index.php,v
retrieving revision 1.40.2.1
retrieving revision 1.40.2.2
diff -C2 -r1.40.2.1 -r1.40.2.2
*** index.php 12 May 2002 00:47:40 -0000 1.40.2.1
--- index.php 17 May 2002 22:58:18 -0000 1.40.2.2
***************
*** 584,590 ****
$template->pparse("body");
exit;
}
! ?>
--- 584,591 ----
$template->pparse("body");
+ $db->sql_close();
exit;
}
! ?>
\ No newline at end of file
|