removed closing of db connection, closing database connection is only required if script runs longer than database connection is needed

This commit is contained in:
Sebastian Mendel
2007-10-16 14:02:16 +00:00
parent 46b110828b
commit d9eebc2ae0
9 changed files with 62 additions and 178 deletions

View File

@@ -264,15 +264,3 @@ if (! empty($_sql_history)
</div>
</body>
</html>
<?php
/**
* Close MySql connections
*/
if (! empty($controllink)) {
PMA_DBI_close($controllink);
}
if (! empty($userlink)) {
PMA_DBI_close($userlink);
}
?>