Skip to content

Commit

Permalink
Parsing error fix.
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@1138 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
vboctor committed Jun 14, 2002
1 parent b689bc2 commit aaa2c9d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions core_database_API.php
Expand Up @@ -5,11 +5,11 @@
# See the files README and LICENSE for details

# --------------------------------------------------------
# $Revision: 1.10 $
# $Revision: 1.11 $
# $Author: vboctor $
# $Date: 2002-06-14 05:54:42 $
# $Date: 2002-06-14 07:50:50 $
#
# $Id: core_database_API.php,v 1.10 2002-06-14 05:54:42 vboctor Exp $
# $Id: core_database_API.php,v 1.11 2002-06-14 07:50:50 vboctor Exp $
# --------------------------------------------------------

###########################################################################
Expand Down Expand Up @@ -125,8 +125,8 @@ function db_close() {
# --------------------

if ( OFF == $g_use_persistent_connections ) {
db_connect( $g_hostname, $g_db_username, $g_db_password, g_database_name, $g_port );
db_connect( $g_hostname, $g_db_username, $g_db_password, $g_database_name, $g_port );
} else {
db_pconnect( $g_hostname, $g_db_username, $g_db_password, g_database_name, $g_port );
db_pconnect( $g_hostname, $g_db_username, $g_db_password, $g_database_name, $g_port );
}
?>

0 comments on commit aaa2c9d

Please sign in to comment.