Commit 7b627813 authored by Imran Hussain's avatar Imran Hussain
Browse files

Make the webclient use postgres 9 when connecting to the DB via adodb

parent 264828c9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ if (file_exists("../settings.php")) {
	include("../settings.php");
	// Initialise the database
	require("/usr/share/php/adodb/adodb.inc.php");
	$DB = NewADOConnection('postgres8');
	$DB = NewADOConnection('postgres9');
	$DB->Connect('dbname='.$dbname.' user=apache');
	$DB->SetFetchMode(ADODB_FETCH_ASSOC);