Applied patch #449529. This will now allow using a space for the db connections password.

This commit is contained in:
skeeter 2001-08-18 00:48:40 +00:00
parent 40e145af1a
commit e797245a5f

View File

@ -63,7 +63,7 @@
. $this->ifadd($this->Host, 'host=')
. $this->ifadd($this->Port, 'port=')
. $this->ifadd($this->User, 'user=')
. $this->ifadd($this->Password, 'password=');
. $this->ifadd("'".$this->Password."'", 'password=');
if ($this->use_pconnect)
{
$this->Link_ID=pg_pconnect($cstr);